@@ -259,13 +259,13 @@ export class UpdateContribution extends Disposable implements IWorkbenchContribu
259
259
if ( state . type === StateType . AvailableForDownload || state . type === StateType . Downloaded || state . type === StateType . Ready ) {
260
260
badge = new NumberBadge ( 1 , ( ) => nls . localize ( 'updateIsReady' , "New {0} update available." , this . productService . nameShort ) ) ;
261
261
} 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 ) ) ;
263
263
priority = 1 ;
264
264
} 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 ) ) ;
266
266
priority = 1 ;
267
267
} 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 ) ) ;
269
269
priority = 1 ;
270
270
}
271
271
@@ -427,7 +427,7 @@ export class UpdateContribution extends Disposable implements IWorkbenchContribu
427
427
group : '7_update' ,
428
428
command : {
429
429
id : 'update.checking' ,
430
- title : nls . localize ( 'checkingForUpdates ' , "Checking for Updates..." ) ,
430
+ title : nls . localize ( 'checkingForUpdates2 ' , "Checking for Updates..." ) ,
431
431
precondition : ContextKeyExpr . false ( )
432
432
} ,
433
433
when : CONTEXT_UPDATE_STATE . isEqualTo ( StateType . CheckingForUpdates )
0 commit comments