Skip to content

Commit 13683b1

Browse files
authored
Improve wording in protocol url open dialog (microsoft#162273)
1 parent b4b96c8 commit 13683b1

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

src/vs/workbench/browser/window.ts

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,11 +210,16 @@ export class BrowserWindow extends Disposable {
210210
[
211211
localize('openExternalDialogButtonRetry', "Try again"),
212212
localize('openExternalDialogButtonInstall', "Install {0}", this.productService.nameLong),
213-
localize('openExternalDialogButtonContinue', "Continue here")
213+
localize('openExternalDialogButtonCancel', "Cancel")
214214
],
215215
{
216216
cancelId: 2,
217-
detail: localize('openExternalDialogDetail', "We tried opening {0} on your computer.", this.productService.nameLong)
217+
detail: localize(
218+
'openExternalDialogDetail.v2',
219+
"We launched {0} on your computer.\n\nIf {1} did not launch, try again or install it below.",
220+
this.productService.nameLong,
221+
this.productService.nameLong,
222+
)
218223
},
219224
);
220225

0 commit comments

Comments
 (0)