From 723bdcf21e712f60cf60ba9b21b475d731485976 Mon Sep 17 00:00:00 2001 From: ksyx <18738953+ksyx@users.noreply.github.com> Date: Tue, 15 Jun 2021 18:19:35 +0800 Subject: [PATCH] fix(window.ts): unresponsive window popup message (#126351) The word `no longer` seems a bit too definitive, implying that it would not get back to be responsive again, but there is an option of waiting it to be responsive. NFC. --- src/vs/platform/windows/electron-main/window.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/platform/windows/electron-main/window.ts b/src/vs/platform/windows/electron-main/window.ts index a7691c915449e..31df6ce84fb4e 100644 --- a/src/vs/platform/windows/electron-main/window.ts +++ b/src/vs/platform/windows/electron-main/window.ts @@ -609,7 +609,7 @@ export class CodeWindow extends Disposable implements ICodeWindow { mnemonicButtonLabel(localize({ key: 'wait', comment: ['&& denotes a mnemonic'] }, "&&Keep Waiting")), mnemonicButtonLabel(localize({ key: 'close', comment: ['&& denotes a mnemonic'] }, "&&Close")) ], - message: localize('appStalled', "The window is no longer responding"), + message: localize('appStalled', "The window is not responding"), detail: localize('appStalledDetail', "You can reopen or close the window or keep waiting."), noLink: true, defaultId: 0,