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.notificationService.info(localize('no edit session','There are no edit sessions to apply.'));
222
+
this.notificationService.info(localize('no edit session','There are no edit sessions to resume.'));
225
223
}else{
226
-
this.notificationService.warn(localize('no edit session content for ref','Could not apply edit session contents for ID {0}.',ref));
224
+
this.notificationService.warn(localize('no edit session content for ref','Could not resume edit session contents for ID {0}.',ref));
227
225
}
228
-
this.logService.info(`Aborting applying edit session as no edit session content is available to be applied from ref ${ref}.`);
226
+
this.logService.info(`Aborting resuming edit session as no edit session content is available to be applied from ref ${ref}.`);
229
227
return;
230
228
}
231
229
consteditSession=data.editSession;
232
230
ref=data.ref;
233
231
234
232
if(editSession.version>EditSessionSchemaVersion){
235
-
this.notificationService.error(localize('client too old',"Please upgrade to a newer version of {0} to apply this edit session.",this.productService.nameLong));
233
+
this.notificationService.error(localize('client too old',"Please upgrade to a newer version of {0} to resume this edit session.",this.productService.nameLong));
// TODO@joyceerhl Provide the option to diff files which would be overwritten by edit session contents
268
266
constresult=awaitthis.dialogService.confirm({
269
-
message: localize('apply edit session warning','Applying your edit session may overwrite your existing uncommitted changes. Do you want to proceed?'),
267
+
message: localize('resume edit session warning','Resuming your edit session may overwrite your existing uncommitted changes. Do you want to proceed?'),
0 commit comments