We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37eb06d commit ed952beCopy full SHA for ed952be
src/vs/workbench/services/issue/browser/issueTroubleshoot.ts
@@ -204,11 +204,11 @@ class TroubleshootIssueService extends Disposable implements ITroubleshootIssueS
204
private askToReproduceIssue(message: string): Promise<TroubleShootResult> {
205
return new Promise((c, e) => {
206
const goodPrompt: IPromptChoice = {
207
- label: localize('I cannot reproduce', "I can't reproduce"),
+ label: localize('I cannot reproduce', "I Can't Reproduce"),
208
run: () => c('good')
209
};
210
const badPrompt: IPromptChoice = {
211
- label: localize('This is Bad', "I can reproduce"),
+ label: localize('This is Bad', "I Can Reproduce"),
212
run: () => c('bad')
213
214
const stop: IPromptChoice = {
0 commit comments