@@ -56,13 +56,9 @@ export class EditSessionsDataViews extends Disposable {
56
56
57
57
viewsRegistry . registerViewWelcomeContent ( viewId , {
58
58
content : localize (
59
- 'noEditSessions' ,
60
- 'You have no stored edit sessions to display.\n{0}' ,
61
- localize (
62
- { key : 'storeEditSessionCommand' , comment : [ 'Please do not translate the word "command", it is part of our internal syntax which must not change' ] } ,
63
- '[{0}](command:workbench.editSessions.actions.store)' ,
64
- localize ( 'storeEditSessionTitle' , 'Store Edit Session' )
65
- )
59
+ 'noStoredChanges' ,
60
+ 'You have no stored changes in the cloud to display.\n{0}' ,
61
+ `[${ localize ( 'storeWorkingChangesTitle' , 'Store Working Changes' ) } ](command:workbench.editSessions.actions.store)` ,
66
62
) ,
67
63
when : ContextKeyExpr . equals ( EDIT_SESSIONS_COUNT_KEY , 0 ) ,
68
64
order : 1
@@ -72,7 +68,7 @@ export class EditSessionsDataViews extends Disposable {
72
68
constructor ( ) {
73
69
super ( {
74
70
id : 'workbench.editSessions.actions.resume' ,
75
- title : localize ( 'workbench.editSessions.actions.resume' , "Resume Edit Session " ) ,
71
+ title : localize ( 'workbench.editSessions.actions.resume.v2 ' , "Resume Working Changes " ) ,
76
72
icon : Codicon . desktopDownload ,
77
73
menu : {
78
74
id : MenuId . ViewItemContext ,
@@ -94,7 +90,7 @@ export class EditSessionsDataViews extends Disposable {
94
90
constructor ( ) {
95
91
super ( {
96
92
id : 'workbench.editSessions.actions.store' ,
97
- title : localize ( 'workbench.editSessions.actions.store' , "Store Edit Session " ) ,
93
+ title : localize ( 'workbench.editSessions.actions.store.v2 ' , "Store Working Changes " ) ,
98
94
icon : Codicon . cloudUpload ,
99
95
} ) ;
100
96
}
@@ -110,7 +106,7 @@ export class EditSessionsDataViews extends Disposable {
110
106
constructor ( ) {
111
107
super ( {
112
108
id : 'workbench.editSessions.actions.delete' ,
113
- title : localize ( 'workbench.editSessions.actions.delete' , "Delete Edit Session " ) ,
109
+ title : localize ( 'workbench.editSessions.actions.delete.v2 ' , "Delete Working Changes " ) ,
114
110
icon : Codicon . trash ,
115
111
menu : {
116
112
id : MenuId . ViewItemContext ,
@@ -125,7 +121,7 @@ export class EditSessionsDataViews extends Disposable {
125
121
const dialogService = accessor . get ( IDialogService ) ;
126
122
const editSessionStorageService = accessor . get ( IEditSessionsStorageService ) ;
127
123
const result = await dialogService . confirm ( {
128
- message : localize ( 'confirm delete' , 'Are you sure you want to permanently delete the edit session with ref {0}? You cannot undo this action.' , editSessionId ) ,
124
+ message : localize ( 'confirm delete.v2 ' , 'Are you sure you want to permanently delete your working changes with ref {0}? You cannot undo this action.' , editSessionId ) ,
129
125
type : 'warning' ,
130
126
title : EDIT_SESSIONS_TITLE
131
127
} ) ;
0 commit comments