mirror of
https://gitea.computerliebe.org/ComputerLiebe_ORG_private/Gitea-VSCode-Clone-Plugin.git
synced 2024-12-29 00:11:53 +00:00
Peter
31e9ea3f02
* docs(gitea-git-clone): add mention of the "Create Repo" feature to README * feat(gitea-git-clone): add error messages for repository names in localization * feat(gitea-git-clone): create new repositories in Gitea directly from VSCode * fix(gitea-git-clone): fix typo in German translation for invalid repository name error message
51 lines
3.2 KiB
JSON
51 lines
3.2 KiB
JSON
{
|
|
"giteaClone.selectInstance": "Select a Gitea instance",
|
|
"giteaClone.noInstanceSelected": "No Gitea instance selected.",
|
|
"giteaClone.invalidInstance": "Invalid Gitea instance selected.",
|
|
"giteaClone.configMissing": "No Gitea instances are configured.",
|
|
"giteaClone.authSuccess": "Authentication successful: {0}",
|
|
"giteaClone.authFailed": "Authentication failed: {0}",
|
|
"giteaClone.configUpdated": "Gitea configuration updated.",
|
|
"giteaClone.enterInstanceUrl": "Enter Gitea instance URL",
|
|
"giteaClone.enterToken": "Enter Gitea Personal Access Token",
|
|
"giteaClone.selectRepo": "Select a repository to clone",
|
|
"giteaClone.noRepos": "No repositories found.",
|
|
"giteaClone.noRepoSelected": "No repository selected.",
|
|
"giteaClone.selectFolder": "Select folder to clone into",
|
|
"giteaClone.targetExists": "The target directory \"{0}\" already exists.",
|
|
"giteaClone.cloningRepo": "Cloning {0}",
|
|
"giteaClone.cloningProgress": "Cloning in progress...",
|
|
"giteaClone.cloneComplete": "Repository cloned successfully.",
|
|
"giteaClone.cloneSuccess": "Repository {0} cloned successfully.",
|
|
"giteaClone.openRepoError": "Error opening the cloned repository.",
|
|
"giteaClone.createPullRequest": "Create Gitea PR",
|
|
"giteaClone.createPullRequestTooltip": "Create a Pull Request in Gitea",
|
|
"giteaClone.pullRequestCreated": "Pull request created successfully and opened in the browser.",
|
|
"giteaClone.noRemoteUrl": "Could not retrieve Git remote URL.",
|
|
"giteaClone.noBranch": "Could not determine the branch.",
|
|
"giteaClone.titleTruncated": "The commit message was too long and has been truncated for the pull request title.",
|
|
"giteaClone.bodyTruncated": "The commit message body was too long and has been truncated for the pull request description.",
|
|
"giteaClone.pullRequestError": "Error creating pull request: {0}",
|
|
"giteaClone.commitError": "Error retrieving the last commit.",
|
|
"giteaClone.branchError": "Error retrieving the branch.",
|
|
"giteaClone.defaultBranchError": "Error retrieving the base branch: {0}",
|
|
"giteaClone.repoError": "Error retrieving repositories.",
|
|
"giteaClone.repoInfoError": "Could not retrieve repository information.",
|
|
"giteaClone.pullRequestsError": "Error retrieving pull requests: {0}",
|
|
"giteaClone.noOpenPRs": "No open pull requests available.",
|
|
"giteaClone.selectPullRequest": "Select a pull request to view",
|
|
"giteaClone.showOpenPullRequestsTooltip": "Show open pull requests",
|
|
"giteaClone.branchStatusTooltip": "Current branch status",
|
|
"giteaClone.buildStatusTooltip": "Build status of the current commit",
|
|
"giteaClone.createRepository": "Create Repository",
|
|
"giteaClone.selectOwner": "Select the owner for the repository",
|
|
"giteaClone.noOwnerSelected": "No owner selected.",
|
|
"giteaClone.enterRepoName": "Enter the name of the new repository",
|
|
"giteaClone.noRepoName": "No repository name provided.",
|
|
"giteaClone.selectVisibility": "Select the visibility of the repository",
|
|
"giteaClone.selectGitignore": "Select a .gitignore template (optional)",
|
|
"giteaClone.repoCreated": "Repository '{0}' created successfully.",
|
|
"giteaClone.createRepoError": "Error creating repository: {0}",
|
|
"giteaClone.invalidRepoName": "Invalid repository name."
|
|
}
|