You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this.lifecycleService.onWillShutdown((e)=>e.join(this.autoStoreEditSession(),{id: 'autoStoreEditSession',label: localize('autoStoreEditSession','Storing current edit session...')}));
134
+
this.lifecycleService.onWillShutdown((e)=>e.join(this.autoStoreEditSession(),{id: 'autoStoreWorkingChanges',label: localize('autoStoreWorkingChanges','Storing current working changes...')}));
this.notificationService.info(localize('no edit session','There are no edit sessions to resume.'));
415
+
this.notificationService.info(localize('no cloud changes','There are no changes to resume from the cloud.'));
416
416
}elseif(ref!==undefined){
417
-
this.notificationService.warn(localize('no edit session content for ref','Could not resume edit session contents for ID {0}.',ref));
417
+
this.notificationService.warn(localize('no cloud changes for ref','Could not resume changes from the cloud for ID {0}.',ref));
418
418
}
419
-
this.logService.info(ref!==undefined ? `Aborting resuming edit session as no edit session content is available to be applied from ref ${ref}.` : `Aborting resuming edit session as no edit session content is available to be applied`);
419
+
this.logService.info(ref!==undefined ? `Aborting resuming changes from cloud as no edit session content is available to be applied from ref ${ref}.` : `Aborting resuming edit session as no edit session content is available to be applied`);
420
420
return;
421
421
}
422
422
consteditSession=data.editSession;
423
423
ref=data.ref;
424
424
425
425
if(editSession.version>EditSessionSchemaVersion){
426
-
this.notificationService.error(localize('client too old',"Please upgrade to a newer version of {0} to resume this edit session.",this.productService.nameLong));
426
+
this.notificationService.error(localize('client too old',"Please upgrade to a newer version of {0} to resume your working changes from the cloud.",this.productService.nameLong));
localize('resume edit session warning many','Resuming your edit session will overwrite the following {0} files. Do you want to proceed?',conflictingChanges.length) :
446
-
localize('resume edit session warning 1','Resuming your edit session will overwrite {0}. Do you want to proceed?',basename(conflictingChanges[0].uri)),
445
+
localize('resume edit session warning many','Resuming your working changes from the cloud will overwrite the following {0} files. Do you want to proceed?',conflictingChanges.length) :
446
+
localize('resume edit session warning 1','Resuming your working changes from the cloud will overwrite {0}. Do you want to proceed?',basename(conflictingChanges[0].uri)),
exportconstEDIT_SESSIONS_VIEW_ICON=registerIcon('edit-sessions-view-icon',Codicon.cloudDownload,localize('editSessionViewIcon','View icon of the edit sessions view.'));
87
+
exportconstEDIT_SESSIONS_VIEW_ICON=registerIcon('edit-sessions-view-icon',Codicon.cloudDownload,localize('editSessionViewIcon','View icon of the cloud changes view.'));
0 commit comments