From 55dd6cc5191db572a9cdc69705bbdd189989c41b Mon Sep 17 00:00:00 2001 From: Benjamin Pasero Date: Wed, 21 Oct 2020 12:24:46 +0200 Subject: [PATCH] fix #108977 --- .../services/dialogs/electron-sandbox/dialogService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/services/dialogs/electron-sandbox/dialogService.ts b/src/vs/workbench/services/dialogs/electron-sandbox/dialogService.ts index d28b6b5e923..c6886ea84e7 100644 --- a/src/vs/workbench/services/dialogs/electron-sandbox/dialogService.ts +++ b/src/vs/workbench/services/dialogs/electron-sandbox/dialogService.ts @@ -215,7 +215,7 @@ class NativeDialogService implements IDialogService { const osProps = await this.nativeHostService.getOSProperties(); const detailString = (useAgo: boolean): string => { - return nls.localize('aboutDetail', + return nls.localize({ key: 'aboutDetail', comment: ['Electron, Chrome, Node.js and V8 are product names that need no translation'] }, "Version: {0}\nCommit: {1}\nDate: {2}\nElectron: {3}\nChrome: {4}\nNode.js: {5}\nV8: {6}\nOS: {7}", version, this.productService.commit || 'Unknown', -- GitLab