Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/vs/workbench/contrib/update/browser/update.contribution.ts')
-rw-r--r--src/vs/workbench/contrib/update/browser/update.contribution.ts12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/vs/workbench/contrib/update/browser/update.contribution.ts b/src/vs/workbench/contrib/update/browser/update.contribution.ts
index 5d22660c689..1ff72278d33 100644
--- a/src/vs/workbench/contrib/update/browser/update.contribution.ts
+++ b/src/vs/workbench/contrib/update/browser/update.contribution.ts
@@ -34,8 +34,8 @@ class DownloadUpdateAction extends Action2 {
constructor() {
super({
id: 'update.downloadUpdate',
- title: localize('downloadUpdate', "Download Update"),
- category: product.nameShort,
+ title: { value: localize('downloadUpdate', "Download Update"), original: 'Download Update' },
+ category: { value: product.nameShort, original: product.nameShort },
f1: true,
precondition: CONTEXT_UPDATE_STATE.isEqualTo(StateType.AvailableForDownload)
});
@@ -50,8 +50,8 @@ class InstallUpdateAction extends Action2 {
constructor() {
super({
id: 'update.installUpdate',
- title: localize('installUpdate', "Install Update"),
- category: product.nameShort,
+ title: { value: localize('installUpdate', "Install Update"), original: 'Install Update' },
+ category: { value: product.nameShort, original: product.nameShort },
f1: true,
precondition: CONTEXT_UPDATE_STATE.isEqualTo(StateType.Downloaded)
});
@@ -66,8 +66,8 @@ class RestartToUpdateAction extends Action2 {
constructor() {
super({
id: 'update.restartToUpdate',
- title: localize('restartToUpdate', "Restart to Update"),
- category: product.nameShort,
+ title: { value: localize('restartToUpdate', "Restart to Update"), original: 'Restart to Update' },
+ category: { value: product.nameShort, original: product.nameShort },
f1: true,
precondition: CONTEXT_UPDATE_STATE.isEqualTo(StateType.Ready)
});