Gitea-Workflow/gitea-git-clone/i18n/package.nls.json
Peter e874cbefd6 feat(gitea-git-clone): add support for creating repositories in Gitea
* Added:
* - Users can now create new repositories in a selected Gitea instance directly from VSCode. Options include:
* - Selecting the Gitea instance (if multiple are configured).
* - Choosing the owner (personal account or organization).
* - Setting the repository visibility (private by default, or public).
* - Selecting a `.gitignore` template (if available via API).
* - The repository is initialized with an MIT license.
* - After creation, the new repository is automatically cloned and opened in VSCode.
* Changed:
* - Updated localization files to include new messages related to repository creation.
*
* Fixed:
* - Improved error handling and messages throughout the extension.
2024-10-31 14:58:36 +01:00

50 lines
3.1 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}"
}