提交 479577f4 编写于 作者: K kaoru 提交者: SteVen Batten

Lowercase 'For' in 'Checking For Updates...' menu item (#77972)

Fixed remaining upper case 'For' in similar menu item which is reported
and fixed at #27532.
上级 5f55c1b8
......@@ -550,7 +550,7 @@ export class Menubar {
})];
case StateType.CheckingForUpdates:
return [new MenuItem({ label: nls.localize('miCheckingForUpdates', "Checking For Updates..."), enabled: false })];
return [new MenuItem({ label: nls.localize('miCheckingForUpdates', "Checking for Updates..."), enabled: false })];
case StateType.AvailableForDownload:
return [new MenuItem({
......
......@@ -586,7 +586,7 @@ export class CustomMenubarControl extends MenubarControl {
this.updateService.checkForUpdates({ windowId }));
case StateType.CheckingForUpdates:
return new Action('update.checking', nls.localize('checkingForUpdates', "Checking For Updates..."), undefined, false);
return new Action('update.checking', nls.localize('checkingForUpdates', "Checking for Updates..."), undefined, false);
case StateType.AvailableForDownload:
return new Action('update.downloadNow', nls.localize({ key: 'download now', comment: ['&& denotes a mnemonic'] }, "D&&ownload Now"), undefined, true, () =>
......
......@@ -484,7 +484,7 @@ export class UpdateContribution extends Disposable implements IWorkbenchContribu
group: '5_update',
command: {
id: 'update.checking',
title: nls.localize('checkingForUpdates', "Checking For Updates..."),
title: nls.localize('checkingForUpdates', "Checking for Updates..."),
precondition: FalseContext
},
when: CONTEXT_UPDATE_STATE.isEqualTo(StateType.CheckingForUpdates)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册