mirror of
https://gitea.computerliebe.org/ComputerLiebe_ORG_private/Gitea-VSCode-Clone-Plugin.git
synced 2025-07-05 12:13:42 +00:00
* chore(gitea-git-clone): update changelog and package version
* feat(gitea-git-clone): add more verbose error handling * fix(gitea-git-clone): fix error message for pull request creation * fix(gitea-git-clone): fix error message for default branch retrieval * fix(gitea-git-clone): fix error message for repository retrieval * fix(gitea-git-clone): fix error message for authentication failure * fix(gitea-git-clone): fix error message for pull request retrieval * fix(gitea-git-clone): fix error message for pull request creation * fix(gitea-git-clone): fix error message for pull request retrieval * fix(gitea-git-clone): fix error message for pull request creation * fix(gitea-git-clone): fix error message for default branch retrieval * fix(gitea-git-clone): fix error message for repository
This commit is contained in:
@ -4,18 +4,14 @@
|
||||
"giteaClone.noRemoteUrl": "Konnte die Git-Remote-URL nicht abrufen.",
|
||||
"giteaClone.noBranch": "Branch konnte nicht ermittelt werden.",
|
||||
"giteaClone.pullRequestCreated": "Pull-Request erfolgreich erstellt und im Browser geöffnet.",
|
||||
"giteaClone.pullRequestError": "Fehler beim Erstellen des Pull Requests: {0}",
|
||||
"giteaClone.commitError": "Fehler beim Abrufen des letzten Commits.",
|
||||
"giteaClone.branchError": "Fehler beim Abrufen des Branches.",
|
||||
"giteaClone.defaultBranchError": "Konnte den base-Branch nicht ermitteln. Standardmäßig wird \"main\" verwendet.",
|
||||
"giteaClone.createPullRequest": "Gitea PR erstellen",
|
||||
"giteaClone.createPullRequestTooltip": "Pull Request in Gitea erstellen",
|
||||
"giteaClone.authSuccess": "Authentifizierung erfolgreich: {0}",
|
||||
"giteaClone.authFailed": "Authentifizierung fehlgeschlagen.",
|
||||
"giteaClone.configUpdated": "Gitea-Konfiguration aktualisiert.",
|
||||
"giteaClone.enterInstanceUrl": "Gitea-Instanz-URL eingeben",
|
||||
"giteaClone.enterToken": "Gitea Personal Access Token eingeben",
|
||||
"giteaClone.repoError": "Fehler beim Abrufen der Repositories.",
|
||||
"giteaClone.apiError": "Fehler bei der Verbindung mit der Gitea API.",
|
||||
"giteaClone.noRepos": "Keine Repositories gefunden.",
|
||||
"giteaClone.selectRepo": "Wähle ein Repository zum Klonen aus",
|
||||
@ -32,8 +28,12 @@
|
||||
"giteaClone.noOpenPRs": "Keine offenen Pull Requests vorhanden.",
|
||||
"giteaClone.selectPullRequest": "Wähle einen Pull Request zum Anzeigen aus",
|
||||
"giteaClone.repoInfoError": "Konnte Repository-Informationen nicht abrufen.",
|
||||
"giteaClone.pullRequestsError": "Fehler beim Abrufen der Pull Requests.",
|
||||
"giteaClone.showOpenPullRequestsTooltip": "Offene Pull Requests anzeigen",
|
||||
"giteaClone.targetExists": "Das Zielverzeichnis \"{0}\" existiert bereits."
|
||||
"giteaClone.targetExists": "Das Zielverzeichnis \"{0}\" existiert bereits.",
|
||||
"giteaClone.pullRequestError": "Fehler beim Erstellen des Pull Requests: {0}",
|
||||
"giteaClone.defaultBranchError": "Fehler beim Abrufen des Basis-Branches: {0}",
|
||||
"giteaClone.repoError": "Fehler beim Abrufen der Repositories: {0}",
|
||||
"giteaClone.authFailed": "Authentifizierung fehlgeschlagen: {0}",
|
||||
"giteaClone.pullRequestsError": "Fehler beim Abrufen der Pull Requests: {0}"
|
||||
}
|
||||
|
@ -4,18 +4,14 @@
|
||||
"giteaClone.noRemoteUrl": "Could not retrieve Git remote URL.",
|
||||
"giteaClone.noBranch": "Could not determine the branch.",
|
||||
"giteaClone.pullRequestCreated": "Pull request created successfully and opened in the browser.",
|
||||
"giteaClone.pullRequestError": "Error creating pull request: {0}",
|
||||
"giteaClone.commitError": "Error retrieving the last commit.",
|
||||
"giteaClone.branchError": "Error retrieving the branch.",
|
||||
"giteaClone.defaultBranchError": "Could not determine the base branch. Defaulting to \"main\".",
|
||||
"giteaClone.createPullRequest": "Create Gitea PR",
|
||||
"giteaClone.createPullRequestTooltip": "Create a Pull Request in Gitea",
|
||||
"giteaClone.authSuccess": "Authentication successful: {0}",
|
||||
"giteaClone.authFailed": "Authentication failed.",
|
||||
"giteaClone.configUpdated": "Gitea configuration updated.",
|
||||
"giteaClone.enterInstanceUrl": "Enter Gitea instance URL",
|
||||
"giteaClone.enterToken": "Enter Gitea Personal Access Token",
|
||||
"giteaClone.repoError": "Error retrieving repositories.",
|
||||
"giteaClone.apiError": "Error connecting to Gitea API.",
|
||||
"giteaClone.noRepos": "No repositories found.",
|
||||
"giteaClone.selectRepo": "Select a repository to clone",
|
||||
@ -32,8 +28,12 @@
|
||||
"giteaClone.noOpenPRs": "There are no open pull requests.",
|
||||
"giteaClone.selectPullRequest": "Select a pull request to view",
|
||||
"giteaClone.repoInfoError": "Could not retrieve repository information.",
|
||||
"giteaClone.pullRequestsError": "Error retrieving pull requests.",
|
||||
"giteaClone.showOpenPullRequestsTooltip": "Show open pull requests",
|
||||
"giteaClone.targetExists": "The target directory \"{0}\" already exists."
|
||||
"giteaClone.targetExists": "The target directory \"{0}\" already exists.",
|
||||
"giteaClone.pullRequestError": "Error creating pull request: {0}",
|
||||
"giteaClone.defaultBranchError": "Error retrieving the base branch: {0}",
|
||||
"giteaClone.repoError": "Error retrieving repositories: {0}",
|
||||
"giteaClone.authFailed": "Authentication failed: {0}",
|
||||
"giteaClone.pullRequestsError": "Error retrieving pull requests: {0}"
|
||||
}
|
||||
|
Reference in New Issue
Block a user