Skip to content

Commit 516c29d

Browse files
authored
fixes #235895 (#235905)
1 parent c8379a7 commit 516c29d

File tree

1 file changed

+4
-4
lines changed
  • src/vs/workbench/contrib/update/browser

1 file changed

+4
-4
lines changed

src/vs/workbench/contrib/update/browser/update.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -259,13 +259,13 @@ export class UpdateContribution extends Disposable implements IWorkbenchContribu
259259
if (state.type === StateType.AvailableForDownload || state.type === StateType.Downloaded || state.type === StateType.Ready) {
260260
badge = new NumberBadge(1, () => nls.localize('updateIsReady', "New {0} update available.", this.productService.nameShort));
261261
} else if (state.type === StateType.CheckingForUpdates) {
262-
badge = new ProgressBadge(() => nls.localize('checkingForUpdates', "Checking for Updates..."));
262+
badge = new ProgressBadge(() => nls.localize('checkingForUpdates', "Checking for {0} updates...", this.productService.nameShort));
263263
priority = 1;
264264
} else if (state.type === StateType.Downloading) {
265-
badge = new ProgressBadge(() => nls.localize('downloading', "Downloading..."));
265+
badge = new ProgressBadge(() => nls.localize('downloading', "Downloading {0} update...", this.productService.nameShort));
266266
priority = 1;
267267
} else if (state.type === StateType.Updating) {
268-
badge = new ProgressBadge(() => nls.localize('updating', "Updating..."));
268+
badge = new ProgressBadge(() => nls.localize('updating', "Updating {0}...", this.productService.nameShort));
269269
priority = 1;
270270
}
271271

@@ -427,7 +427,7 @@ export class UpdateContribution extends Disposable implements IWorkbenchContribu
427427
group: '7_update',
428428
command: {
429429
id: 'update.checking',
430-
title: nls.localize('checkingForUpdates', "Checking for Updates..."),
430+
title: nls.localize('checkingForUpdates2', "Checking for Updates..."),
431431
precondition: ContextKeyExpr.false()
432432
},
433433
when: CONTEXT_UPDATE_STATE.isEqualTo(StateType.CheckingForUpdates)

0 commit comments

Comments
 (0)