From b26c98514807c75b714db41743a5d0ea74d43299 Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Wed, 29 Jun 2016 09:42:36 +0200 Subject: [PATCH] update wording, fixes #8396 --- src/vs/platform/actions/browser/menusExtensionPoint.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vs/platform/actions/browser/menusExtensionPoint.ts b/src/vs/platform/actions/browser/menusExtensionPoint.ts index aed932d4882..5d1d5e68f85 100644 --- a/src/vs/platform/actions/browser/menusExtensionPoint.ts +++ b/src/vs/platform/actions/browser/menusExtensionPoint.ts @@ -254,10 +254,10 @@ ExtensionsRegistry.registerExtensionPoint<{ [loc: string]: IDeclaredMenuItem[] } for (let item of entry.value) { if (!MenuRegistry.hasCommand(item.command)) { - collector.warn(localize('missing.command', "Menu item references command `{0}` but is not defined in the `commands` section.", item.command)); + collector.warn(localize('missing.command', "Menu item references a command `{0}` which is not defined in the 'commands' section.", item.command)); } if (item.alt && !MenuRegistry.hasCommand(item.alt)) { - collector.warn(localize('missing.altCommand', "Menu item references alt-command `{0}` but is not defined in the `commands` section.", item.alt)); + collector.warn(localize('missing.altCommand', "Menu item references an alt-command `{0}` which is not defined in the 'commands' section.", item.alt)); } if (item.command || item.alt) { collector.info(localize('dupe.command', "Menu item references the same command as default and alternative command"));