forked from microsoft/vscode-pull-request-github
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.nls.json
221 lines (221 loc) · 17.9 KB
/
package.nls.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
{
"displayName": "GitHub Pull Requests and Issues",
"description": "Pull Request and Issue Provider for GitHub",
"githubPullRequests.pullRequestDescription.description": "The description used when creating pull requests.",
"githubPullRequests.pullRequestDescription.template": "Use a pull request template and commit description, or just use the commit description if no templates were found",
"githubPullRequests.pullRequestDescription.commit": "Use the latest commit message only",
"githubPullRequests.logLevel.description": "Logging for GitHub Pull Request extension. The log is emitted to the output channel named as GitHub Pull Request.",
"githubPullRequests.remotes.markdownDescription": "List of remotes, by name, to fetch pull requests from.",
"githubPullRequests.queries.markdownDescription": "Specifies what queries should be used in the GitHub Pull Requests tree. Each query object has a `label` that will be shown in the tree and a search `query` using [GitHub search syntax](https://help.github.com/en/articles/understanding-the-search-syntax). The variable `${user}` can be used to specify the logged in user within a search. By default these queries define the categories \"Waiting For My Review\", \"Assigned To Me\" and \"Created By Me\". If you want to preserve these, make sure they are still in the array when you modify the setting.",
"githubPullRequests.queries.label.description": "The label to display for the query in the Pull Requests tree",
"githubPullRequests.queries.query.description": "The query used for searching pull requests.",
"githubPullRequests.queries.waitingForMyReview": "Waiting For My Review",
"githubPullRequests.queries.assignedToMe": "Assigned To Me",
"githubPullRequests.queries.createdByMe": "Created By Me",
"githubPullRequests.defaultMergeMethod.description": "The method to use when merging pull requests.",
"githubPullRequests.notifications.description": "If GitHub notifications should be shown to the user.",
"githubPullRequests.fileListLayout.description": "The layout to use when displaying changed files list.",
"githubPullRequests.defaultDeletionMethod.selectLocalBranch.description": "When true, the option to delete the local branch will be selected by default when deleting a branch from a pull request.",
"githubPullRequests.defaultDeletionMethod.selectRemote.description": "When true, the option to delete the remote will be selected by default when deleting a branch from a pull request.",
"githubPullRequests.terminalLinksHandler.description": "Default handler for terminal links.",
"githubPullRequests.terminalLinksHandler.github": "Create the pull request on GitHub",
"githubPullRequests.terminalLinksHandler.vscode": "Create the pull request in VS Code",
"githubPullRequests.terminalLinksHandler.ask": "Ask which method to use",
"githubPullRequests.createOnPublishBranch.description": "Create a pull request when a branch is published.",
"githubPullRequests.createOnPublishBranch.never": "Never create a pull request when a branch is published.",
"githubPullRequests.createOnPublishBranch.ask": "Ask if you want to create a pull request when a branch is published.",
"githubPullRequests.commentExpandState.description": "Controls whether comments are expanded when a document with comments is opened.",
"githubPullRequests.commentExpandState.expandUnresolved": "All unresolved comments will be expanded.",
"githubPullRequests.commentExpandState.collapseAll": "All comments will be collapsed",
"githubPullRequests.useReviewMode.description": "Choose which pull request states will use review mode. \"Open\" pull requests will always use review mode.",
"githubPullRequests.useReviewMode.merged": "Use review mode for merged pull requests.",
"githubPullRequests.useReviewMode.closed": "Use review mode for closed pull requests. Merged pull requests are not considered \"closed\".",
"githubPullRequests.assignCreated.description": {
"message": "All pull requests created with this extension will be assigned to this user. To assign to yourself, use the '${user}' variable.",
"comment": [
"{Locked='${user}'}",
"Do not translate what's inside of the '${..}'. It is an internal syntax for the extension"
]
},
"githubPullRequests.pushBranch.description": "Push the \"from\" branch when creating a PR and the \"from\" branch is not available on the remote.",
"githubPullRequests.pushBranch.prompt": "Prompt to push the branch when creating a PR and the \"from\" branch is not available on the remote.",
"githubPullRequests.pushBranch.always": "Always push the branch when creating a PR and the \"from\" branch is not available on the remote.",
"githubPullRequests.pullBranch.description": "Pull changes from the remote when a PR branch is checked out locally. Changes are detected when the PR is manually refreshed and during periodic background updates.",
"githubPullRequests.pullBranch.prompt": "Prompt to pull a PR branch when changes are detected in the PR.",
"githubPullRequests.pullBranch.never": "Never pull a PR branch when changes are detected in the PR.",
"githubPullRequests.pullBranch.always": "Always pull a PR branch when changes are detected in the PR. When `\"git.autoStash\": true` this will instead `prompt` to prevent unexpected file changes.",
"githubPullRequests.ignoredPullRequestBranches.description": "Prevents branches that are associated with a pull request from being automatically detected. This will prevent review mode from being entered on these branches.",
"githubPullRequests.ignoredPullRequestBranches.items": "Branch name",
"githubPullRequests.overrideDefaultBranch.description": "The default branch for a repository is set on github.com. With this setting, you can override that default with another branch.",
"githubPullRequests.postCreate.description": "The action to take after creating a pull request.",
"githubPullRequests.postCreate.none": "No action",
"githubPullRequests.postCreate.openOverview": "Open the overview page of the pull request",
"githubIssues.ignoreMilestones.description": "An array of milestones titles to never show issues from.",
"githubIssues.createIssueTriggers.description": "Strings that will cause the 'Create issue from comment' code action to show.",
"githubIssues.createIssueTriggers.items": "String that enables the 'Create issue from comment' code action. Should not contain whitespace.",
"githubIssues.createInsertFormat.description": "Controls whether an issue number (ex. #1234) or a full url (ex. https://github.com/owner/name/issues/1234) is inserted when the Create Issue code action is run.",
"githubIssues.issueCompletions.enabled.description": "Controls whether completion suggestions are shown for issues.",
"githubIssues.userCompletions.enabled.description": "Controls whether completion suggestions are shown for users.",
"githubIssues.ignoreCompletionTrigger.description": "Languages that the '#' character should not be used to trigger issue completion suggestions.",
"githubIssues.ignoreCompletionTrigger.items": "Language that issue completions should not trigger on '#'.",
"githubIssues.ignoreUserCompletionTrigger.description": "Languages that the '@' character should not be used to trigger user completion suggestions.",
"githubIssues.ignoreUserCompletionTrigger.items": "Language that user completions should not trigger on '@'.",
"githubIssues.issueBranchTitle.markdownDescription": {
"message": "Advanced settings for the name of the branch that is created when you start working on an issue. \n- `${user}` will be replace with the currently logged in username \n- `${issueNumber}` will be replaced with the current issue number \n- `${sanitizedIssueTitle}` will be replaced with the issue title, with all spaces and unsupported characters (https://git-scm.com/docs/git-check-ref-format) removed",
"comment": [
"{Locked='${...}'}",
"Do not translate what's inside of the '${..}'. It is an internal syntax for the extension"
]
},
"githubIssues.useBranchForIssues.description": {
"message": "Determines whether a branch should be checked out when working on an issue. To configure the name of the branch, set `githubIssues.issueBranchTitle`.",
"comment": [
"{Locked='`githubIssues.issueBranchTitle`'}",
"Do not translate what's inside of the `...`. It is a setting id."
]
},
"githubIssues.useBranchForIssues.on": "A branch will always be checked out when you start working on an issue. If the branch doesn't exist, it will be created.",
"githubIssues.useBranchForIssues.off": "A branch will not be created when you start working on an issue. If you have worked on an issue before and a branch was created for it, that same branch will be checked out.",
"githubIssues.useBranchForIssues.prompt": "A prompt will show for setting the name of the branch that will be created and checked out.",
"githubIssues.issueCompletionFormatScm.markdownDescription": {
"message": "Sets the format of issue completions in the SCM inputbox. \n- `${user}` will be replace with the currently logged in username \n- `${issueNumber}` will be replaced with the current issue number \n- `${issueNumberLabel}` will be replaced with a label formatted as #number or owner/repository#number, depending on whether the issue is in the current repository",
"comment": [
"Do not translate what's inside of the ${...}. It is an internal syntax for the extension."
]
},
"githubIssues.workingIssueFormatScm.markdownDescription": {
"message": "Sets the format of the commit message that is set in the SCM inputbox when you **Start Working on an Issue**. Defaults to `${issueTitle} \nFixes #${issueNumber}`",
"comment": [
"Do not translate what's inside of the ${...}. It is an internal syntax for the extension."
]
},
"githubIssues.queries.markdownDescription": "Specifies what queries should be used in the GitHub issues tree using [GitHub search syntax](https://help.github.com/en/articles/understanding-the-search-syntax) with variables. The first query listed will be expanded in the Issues view. The \"default\" query includes issues assigned to you by Milestone. If you want to preserve these, make sure they are still in the array when you modify the setting.",
"githubIssues.queries.label": "The label to display for the query in the Issues tree.",
"githubIssues.queries.query": "The search query using [GitHub search syntax](https://help.github.com/en/articles/understanding-the-search-syntax) with variables. The variable `${user}` can be used to specify the logged in user within a search. `${owner}` and `${repository}` can be used to specify the repository by using `repo:${owner}/${repository}`.",
"githubIssues.queries.default.myIssues": "My Issues",
"githubIssues.queries.default.createdIssues": "Created Issues",
"githubIssues.queries.default.recentIssues": "Recent Issues",
"githubIssues.assignWhenWorking.description": "Assigns the issue you're working on to you. Only applies when the issue you're working on is in a repo you currently have open.",
"githubPullRequests.focusedMode.description": "The layout to use when a pull request is checked out. Set to false to prevent layout changes.",
"view.github.pull.request.name": "GitHub Pull Request",
"view.github.login.name": "Login",
"view.pr.github.name": "Pull Requests",
"view.issues.github.name": "Issues",
"view.github.create.pull.request.name": "Create Pull Request",
"view.github.compare.changes.name": "Compare Changes",
"view.pr.status.github.name": "Changes In Pull Request",
"view.github.active.pull.request.name": "Active Pull Request",
"view.github.active.pull.request.welcome.name": "Active Pull Request",
"command.pull.request.category": "GitHub Pull Requests",
"command.pr.create.title": "Create Pull Request",
"command.pr.pick.title": "Checkout Pull Request",
"command.pr.exit.title": "Checkout Default Branch",
"command.pr.dismissNotification.title": "Dismiss Notification",
"command.pr.merge.title": "Merge Pull Request",
"command.pr.readyForReview.title": "Mark Pull Request Ready For Review",
"command.pr.close.title": "Close Pull Request",
"command.pr.openPullRequestOnGitHub.title": "Open Pull Request on GitHub",
"command.pr.openAllDiffs.title": "Open All Diffs",
"command.pr.refreshPullRequest.title": "Refresh Pull Request",
"command.pr.openFileOnGitHub.title": "Open File on GitHub",
"command.pr.copyCommitHash.title": "Copy Commit Hash",
"command.pr.openOriginalFile.title": "Open Original File",
"command.pr.openModifiedFile.title": "Open Modified File",
"command.pr.openDiffView.title": "Open Diff View",
"command.pr.openDescription.title": "View Pull Request Description",
"command.pr.openDescriptionToTheSide.title": "Open Pull Request Description to the Side",
"command.pr.refreshDescription.title": "Refresh Pull Request Description",
"command.pr.showDiffSinceLastReview.title": "Show Changes Since Last Review",
"command.pr.showDiffAll.title": "Show All Changes",
"command.pr.checkoutByNumber.title": "Checkout Pull Request by Number",
"command.review.openFile.title": "Open File",
"command.review.openLocalFile.title": "Open File",
"command.review.suggestDiff.title": "Suggest Edit",
"command.pr.refreshList.title": "Refresh Pull Requests List",
"command.pr.setFileListLayoutAsTree.title": "Toggle View Mode",
"command.pr.setFileListLayoutAsFlat.title": "Toggle View Mode",
"command.pr.refreshChanges.title": "Refresh",
"command.pr.configurePRViewlet.title": "Configure...",
"command.pr.deleteLocalBranch.title": "Delete Local Branch",
"command.pr.signin.title": "Sign in to GitHub",
"command.pr.signinenterprise.title": "Sign in to GitHub Enterprise",
"command.pr.deleteLocalBranchesNRemotes.title": "Delete local branches and remotes",
"command.pr.createComment.title": "Add Comment",
"command.pr.createSingleComment.title": "Add Comment",
"command.pr.startReview.title": "Start Review",
"command.pr.editComment.title": "Edit Comment",
"command.pr.cancelEditComment.title": "Cancel",
"command.pr.saveComment.title": "Save",
"command.pr.deleteComment.title": "Delete Comment",
"command.pr.resolveReviewThread.title": "Resolve Conversation",
"command.pr.unresolveReviewThread.title": "Unresolve Conversation",
"command.pr.signinAndRefreshList.title": "Sign in and Refresh",
"command.pr.configureRemotes.title": "Configure Remotes...",
"command.pr.refreshActivePullRequest.title": "Refresh",
"command.pr.markFileAsViewed.title": "Mark File As Viewed",
"command.pr.unmarkFileAsViewed.title": "Mark File As Not Viewed",
"command.pr.openReview.title": "Go to Review",
"command.pr.collapseAllComments.title": "Collapse All Comments",
"command.comments.category": "Comments",
"command.pr.editQuery.title": "Edit Query",
"command.pr.openPullsWebsite.title": "Open on GitHub",
"command.pr.resetViewedFiles.title": "Reset Viewed Files",
"command.issues.category": "GitHub Issues",
"command.issue.createIssueFromSelection.title": "Create Issue From Selection",
"command.issue.createIssueFromClipboard.title": "Create Issue From Clipboard",
"command.issue.copyGithubPermalink.title": "Copy GitHub Permalink",
"command.issue.copyGithubHeadLink.title": "Copy GitHub Head Link",
"command.issue.copyMarkdownGithubPermalink.title": "Copy GitHub Permalink as Markdown",
"command.issue.openGithubPermalink.title": "Open Permalink on GitHub",
"command.issue.openIssue.title": "Open Issue on GitHub",
"command.issue.copyIssueNumber.title": "Copy Number",
"command.issue.copyIssueUrl.title": "Copy Url",
"command.issue.refresh.title": "Refresh",
"command.issue.suggestRefresh.title": "Refresh Suggestions",
"command.issue.startWorking.title": "Start Working on Issue",
"command.issue.startWorkingBranchDescriptiveTitle.title": "Start Working on Issue and Checkout Topic Branch",
"command.issue.continueWorking.title": "Continue Working on Issue",
"command.issue.startWorkingBranchPrompt.title": "Start Working and Set Branch...",
"command.issue.stopWorking.title": "Stop Working on Issue",
"command.issue.stopWorkingBranchDescriptiveTitle.title": "Stop Working on Issue and Leave Topic Branch",
"command.issue.statusBar.title": "Current Issue Options",
"command.issue.getCurrent.title": "Get current issue",
"command.issue.editQuery.title": "Edit Query",
"command.issue.createIssue.title": "Create an Issue",
"command.issue.createIssueFromFile.title": "Create Issue",
"command.issue.issueCompletion.title": "Issue Completion Chosen",
"command.issue.userCompletion.title": "User Completion Chosen",
"command.issue.signinAndRefreshList.title": "Sign in and Refresh",
"command.issue.goToLinkedCode.title": "Go to Linked Code",
"command.issues.openIssuesWebsite.title": "Open on GitHub",
"welcome.github.login.contents": {
"message": "You have not yet signed in with GitHub\n[Sign in](command:pr.signin)",
"comment" : [
"Do not translate what's inside of (...). It is link syntax.",
"{Locked='](command:pr.signin)'}"
]
},
"welcome.github.loginWithEnterprise.contents": {
"message": "[Sign in with GitHub Enterprise](command:pr.signinenterprise)",
"comment": [
"Do not translate what's inside of (...). It is link syntax.",
"{Locked='](command:pr.signinenterprise)'}"
]
},
"welcome.github.compareChanges.contents": {
"message": "The comparing branch has no upstream remote\n[Publish branch](command:git.publish)",
"comment" : [
"Do not translate what's inside of (...). It is link syntax.",
"{Locked='](command:git.publish)'}"
]
},
"welcome.pr.github.uninitialized.contents": "Loading...",
"welcome.pr.github.noFolder.contents": "You have not yet opened a folder.",
"welcome.pr.github.noRepo.contents": "No git repositories found",
"welcome.issues.github.uninitialized.contents": "Loading...",
"welcome.issues.github.noFolder.contents": "You have not yet opened a folder.",
"welcome.issues.github.noRepo.contents": "No git repositories found",
"welcome.github.activePullRequest.contents": "Loading...",
"submenu.github.pullRequests.overflow.label": "More actions...",
"submenu.github.issues.overflow.label": "More actions..."
}