You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
detail: localize('detail.start',"Issue troubleshooting is a process to help you identify if the issue is with {0} or caused by an extension.\n\nDuring the process the window reloads repeatedly. Each time you must confirm if you are still seeing problems.",this.productService.nameShort),
111
+
detail: localize('detail.start',"Issue troubleshooting is a process to help you identify if the issue is with {0} or caused by an extension.\n\nDuring the process the window reloads repeatedly. Each time you must confirm if you are still seeing problems.",this.productService.nameLong),
112
112
primaryButton: localize({key: 'msg',comment: ['&& denotes a mnemonic']},"&&Troubleshoot Issue"),
113
113
custom: true
114
114
});
@@ -159,7 +159,7 @@ class TroubleshootIssueService extends Disposable implements ITroubleshootIssueS
constresult=awaitthis.askToReproduceIssue(localize('profile.extensions.disabled',"Issue troubleshooting is active and has temprarily disabled all extensions. Check if you can still reproduce the problem and proceed by selecting from these options."));
162
+
constresult=awaitthis.askToReproduceIssue(localize('profile.extensions.disabled',"Issue troubleshooting is active and has temprarily disabled all installed extensions. Check if you can still reproduce the problem and proceed by selecting from these options."));
@@ -180,10 +180,10 @@ class TroubleshootIssueService extends Disposable implements ITroubleshootIssueS
180
180
awaitthis.stop();
181
181
}
182
182
if(result==='good'){
183
-
awaitthis.askToReportIssue(localize('issue is with configuration',"Issue troubleshooting is done and has identified that the issue is caused by your settings. Please report the issue by sharing your settings."));
183
+
awaitthis.askToReportIssue(localize('issue is with configuration',"Issue troubleshooting has identified that the issue is caused by your settings. Please report the issue by sharing your settings."));
184
184
}
185
185
if(result==='bad'){
186
-
awaitthis.askToReportIssue(localize('issue is in core',"Issue troubleshooting is done and has identified that the issue is with {0}.",this.productService.nameShort));
186
+
awaitthis.askToReportIssue(localize('issue is in core',"Issue troubleshooting has identified that the issue is with {0}.",this.productService.nameLong));
187
187
}
188
188
}
189
189
@@ -217,45 +217,45 @@ class TroubleshootIssueService extends Disposable implements ITroubleshootIssueS
detail: localize('use insiders',"This likely means that the issue has been addressed already and will be available in an upcoming release. You can safely use {0} insiders until the new stable version is available.",this.productService.nameShort),
228
+
detail: localize('use insiders',"This likely means that the issue has been addressed already and will be available in an upcoming release. You can safely use {0} insiders until the new stable version is available.",this.productService.nameLong),
detail: localize('ask to reproduce issue',"Please try to reproduce the issue in {0} insiders and confirm if the issue exists there.",this.productService.nameShort),
274
-
custom: true
271
+
buttons: [{
272
+
label: localize('good',"I can't reproduce"),
273
+
run: ()=>'good'
274
+
},{
275
+
label: localize('bad',"I can reproduce"),
276
+
run: ()=>'bad'
277
+
}],
278
+
cancelButton: {
279
+
label: localize('stop',"Stop"),
280
+
run: ()=>'stop'
281
+
},
282
+
detail: localize('ask to reproduce issue',"Please try to reproduce the issue in {0} insiders and confirm if the issue exists there.",this.productService.nameLong),
issueBody: `> This issue is reported using the **Troubleshoot Issue** feature. ${checkedInInsiders ? localize('confirmed in insiders',"It is confirmed that the issue exists in Insiders.") : ''}`,
0 commit comments