Skip to content

Commit a893735

Browse files
authored
Show both localized and original edit sessions command names in palette (microsoft#153870)
1 parent bbce24d commit a893735

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/vs/workbench/contrib/sessionSync/browser/sessionSync.contribution.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,15 +44,15 @@ registerSingleton(ISessionSyncWorkbenchService, SessionSyncWorkbenchService);
4444

4545
const resumeLatestCommand = {
4646
id: 'workbench.experimental.editSessions.actions.resumeLatest',
47-
title: localize('resume latest', "{0}: Resume Latest Edit Session", EDIT_SESSION_SYNC_TITLE),
47+
title: { value: localize('resume latest', "{0}: Resume Latest Edit Session", EDIT_SESSION_SYNC_TITLE), original: 'Edit Sessions' },
4848
};
4949
const storeCurrentCommand = {
5050
id: 'workbench.experimental.editSessions.actions.storeCurrent',
51-
title: localize('store current', "{0}: Store Current Edit Session", EDIT_SESSION_SYNC_TITLE),
51+
title: { value: localize('store current', "{0}: Store Current Edit Session", EDIT_SESSION_SYNC_TITLE), original: 'Edit Sessions' },
5252
};
5353
const continueEditSessionCommand = {
5454
id: '_workbench.experimental.editSessions.actions.continueEditSession',
55-
title: localize('continue edit session', "Continue Edit Session..."),
55+
title: { value: localize('continue edit session', "Continue Edit Session..."), original: 'Continue Edit Session...' },
5656
};
5757
const openLocalFolderCommand = {
5858
id: '_workbench.experimental.editSessions.actions.continueEditSession.openLocalFolder',

0 commit comments

Comments
 (0)