From 8f7d855bd4e995a227f8b6afb1b0cd02578fe0e5 Mon Sep 17 00:00:00 2001 From: isidor Date: Wed, 28 Sep 2016 11:46:22 +0200 Subject: [PATCH] fixes #12777 --- .../parts/debug/electron-browser/debug.contribution.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/parts/debug/electron-browser/debug.contribution.ts b/src/vs/workbench/parts/debug/electron-browser/debug.contribution.ts index 3fc62db16fd..8bf9d068e49 100644 --- a/src/vs/workbench/parts/debug/electron-browser/debug.contribution.ts +++ b/src/vs/workbench/parts/debug/electron-browser/debug.contribution.ts @@ -157,7 +157,7 @@ registerSingleton(IDebugService, service.DebugService); // Register Debug Error Editor #9062 (platform.Registry.as(EditorExtensions.Editors)).registerEditor(new EditorDescriptor(DebugErrorEditor.ID, - nls.localize('debugErrorEditor', "Debug Error"), + nls.localize({ comment: ['Debug is a noun in this context, not a verb.'], key: 'debugErrorEditor' }, "Debug Error"), 'vs/workbench/parts/debug/browser/debugErrorEditor', 'DebugErrorEditor'), [new SyncDescriptor(DebugErrorEditorInput)] -- GitLab