Skip to content

Commit 46041c9

Browse files
authored
Implement troubleshoot issue (microsoft#184901)
* implement troubleshoot issue action * move issue troubleshooting to a service * feedback * fix stable check
1 parent 17c88bf commit 46041c9

File tree

7 files changed

+410
-21
lines changed

7 files changed

+410
-21
lines changed

build/lib/i18n.resources.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -521,6 +521,10 @@
521521
{
522522
"name": "vs/workbench/contrib/accessibility",
523523
"project": "vscode-workbench"
524+
},
525+
{
526+
"name": "vs/workbench/services/issue",
527+
"project": "vscode-workbench"
524528
}
525529
]
526530
}

src/vs/workbench/services/extensionManagement/browser/extensionBisect.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -185,11 +185,11 @@ class ExtensionBisectUi {
185185
private _showBisectPrompt(): void {
186186

187187
const goodPrompt: IPromptChoice = {
188-
label: 'Good Now',
188+
label: localize('I cannot reproduce', "I can't reproduce"),
189189
run: () => this._commandService.executeCommand('extension.bisect.next', false)
190190
};
191191
const badPrompt: IPromptChoice = {
192-
label: 'This is Bad',
192+
label: localize('This is Bad', "I can reproduce"),
193193
run: () => this._commandService.executeCommand('extension.bisect.next', true)
194194
};
195195
const stop: IPromptChoice = {
@@ -329,11 +329,11 @@ registerAction2(class extends Action2 {
329329
detail: localize('bisect', "Extension Bisect is active and has disabled {0} extensions. Check if you can still reproduce the problem and proceed by selecting from these options.", bisectService.disabledCount),
330330
buttons: [
331331
{
332-
label: localize({ key: 'next.good', comment: ['&& denotes a mnemonic'] }, "&&Good now"),
332+
label: localize({ key: 'next.good', comment: ['&& denotes a mnemonic'] }, "I ca&&n't reproduce"),
333333
run: () => false // good now
334334
},
335335
{
336-
label: localize({ key: 'next.bad', comment: ['&& denotes a mnemonic'] }, "This is &&bad"),
336+
label: localize({ key: 'next.bad', comment: ['&& denotes a mnemonic'] }, "I can &&reproduce"),
337337
run: () => true // bad
338338
},
339339
{

0 commit comments

Comments
 (0)