@codingame/monaco-vscode-edit-sessions-service-override 11.0.1 → 11.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codingame/monaco-vscode-edit-sessions-service-override",
3
- "version": "11.0.1",
3
+ "version": "11.0.2",
4
4
  "keywords": [],
5
5
  "author": {
6
6
  "name": "CodinGame",
@@ -26,6 +26,6 @@
26
26
  }
27
27
  },
28
28
  "dependencies": {
29
- "vscode": "npm:@codingame/monaco-vscode-api@11.0.1"
29
+ "vscode": "npm:@codingame/monaco-vscode-api@11.0.2"
30
30
  }
31
31
  }
@@ -73,24 +73,24 @@ import Severity$1 from 'vscode/vscode/vs/base/common/severity';
73
73
  var EditSessionsContribution_1;
74
74
  const continueWorkingOnCommand = {
75
75
  id: '_workbench.editSessions.actions.continueEditSession',
76
- title: ( localize2(2428, 'Continue Working On...')),
76
+ title: ( localize2(2408, 'Continue Working On...')),
77
77
  precondition: ( (WorkspaceFolderCountContext.notEqualsTo('0'))),
78
78
  f1: true
79
79
  };
80
80
  const openLocalFolderCommand = {
81
81
  id: '_workbench.editSessions.actions.continueEditSession.openLocalFolder',
82
- title: ( localize2(2429, 'Open In Local Folder')),
82
+ title: ( localize2(2409, 'Open In Local Folder')),
83
83
  category: EDIT_SESSION_SYNC_CATEGORY,
84
84
  precondition: ( (ContextKeyExpr.and( (IsWebContext.toNegated()), VirtualWorkspaceContext)))
85
85
  };
86
86
  const showOutputChannelCommand = {
87
87
  id: 'workbench.editSessions.actions.showOutputChannel',
88
- title: ( localize2(2430, "Show Log")),
88
+ title: ( localize2(2410, "Show Log")),
89
89
  category: EDIT_SESSION_SYNC_CATEGORY
90
90
  };
91
91
  const installAdditionalContinueOnOptionsCommand = {
92
92
  id: 'workbench.action.continueOn.extensions',
93
- title: ( localize(2431, 'Install additional development environment options')),
93
+ title: ( localize(2411, 'Install additional development environment options')),
94
94
  };
95
95
  registerAction2(class extends Action2 {
96
96
  constructor() {
@@ -100,7 +100,7 @@ registerAction2(class extends Action2 {
100
100
  return accessor.get(IExtensionsWorkbenchService).openSearch('@tag:continueOn');
101
101
  }
102
102
  });
103
- const resumeProgressOptionsTitle = `[${( localize(2432, 'Resuming working changes...'))}](command:${showOutputChannelCommand.id})`;
103
+ const resumeProgressOptionsTitle = `[${( localize(2412, 'Resuming working changes...'))}](command:${showOutputChannelCommand.id})`;
104
104
  const resumeProgressOptions = {
105
105
  location: 10 ,
106
106
  type: 'syncing',
@@ -181,7 +181,7 @@ let EditSessionsContribution = class EditSessionsContribution extends Disposable
181
181
  this._register(this.fileService.registerProvider(EditSessionsFileSystemProvider.SCHEMA, ( (new EditSessionsFileSystemProvider(this.editSessionsStorageService)))));
182
182
  this.lifecycleService.onWillShutdown((e) => {
183
183
  if (e.reason !== 3 && this.editSessionsStorageService.isSignedIn && this.configurationService.getValue('workbench.experimental.cloudChanges.autoStore') === 'onShutdown' && !isWeb) {
184
- e.join(this.autoStoreEditSession(), { id: 'autoStoreWorkingChanges', label: ( localize(2433, 'Storing current working changes...')) });
184
+ e.join(this.autoStoreEditSession(), { id: 'autoStoreWorkingChanges', label: ( localize(2413, 'Storing current working changes...')) });
185
185
  }
186
186
  });
187
187
  this._register(this.editSessionsStorageService.onDidSignIn(() => this.updateAccountsMenuBadge()));
@@ -239,7 +239,7 @@ let EditSessionsContribution = class EditSessionsContribution extends Disposable
239
239
  if (this.editSessionsStorageService.isSignedIn) {
240
240
  return this.accountsMenuBadgeDisposable.clear();
241
241
  }
242
- const badge = ( (new NumberBadge(1, () => ( localize(2434, 'Check for pending cloud changes')))));
242
+ const badge = ( (new NumberBadge(1, () => ( localize(2414, 'Check for pending cloud changes')))));
243
243
  this.accountsMenuBadgeDisposable.value = this.activityService.showAccountsActivity({ badge });
244
244
  }
245
245
  async autoStoreEditSession() {
@@ -247,7 +247,7 @@ let EditSessionsContribution = class EditSessionsContribution extends Disposable
247
247
  await this.progressService.withProgress({
248
248
  location: 10 ,
249
249
  type: 'syncing',
250
- title: ( localize(2435, 'Storing working changes...'))
250
+ title: ( localize(2415, 'Storing working changes...'))
251
251
  }, async () => this.storeEditSession(false, cancellationTokenSource.token), () => {
252
252
  cancellationTokenSource.cancel();
253
253
  cancellationTokenSource.dispose();
@@ -291,7 +291,7 @@ let EditSessionsContribution = class EditSessionsContribution extends Disposable
291
291
  constructor() {
292
292
  super({
293
293
  id: 'workbench.editSessions.actions.showEditSessions',
294
- title: ( localize2(2436, 'Show Cloud Changes')),
294
+ title: ( localize2(2416, 'Show Cloud Changes')),
295
295
  category: EDIT_SESSION_SYNC_CATEGORY,
296
296
  f1: true
297
297
  });
@@ -328,7 +328,7 @@ let EditSessionsContribution = class EditSessionsContribution extends Disposable
328
328
  location: 15 ,
329
329
  cancellable: true,
330
330
  type: 'syncing',
331
- title: ( localize(2437, 'Storing your working changes...'))
331
+ title: ( localize(2417, 'Storing your working changes...'))
332
332
  }, async () => {
333
333
  const ref = await that.storeEditSession(false, cancellationTokenSource.token);
334
334
  if (ref !== undefined) {
@@ -377,7 +377,7 @@ let EditSessionsContribution = class EditSessionsContribution extends Disposable
377
377
  constructor() {
378
378
  super({
379
379
  id: 'workbench.editSessions.actions.resumeLatest',
380
- title: ( localize2(2438, 'Resume Latest Changes from Cloud')),
380
+ title: ( localize2(2418, 'Resume Latest Changes from Cloud')),
381
381
  category: EDIT_SESSION_SYNC_CATEGORY,
382
382
  f1: true,
383
383
  });
@@ -390,7 +390,7 @@ let EditSessionsContribution = class EditSessionsContribution extends Disposable
390
390
  constructor() {
391
391
  super({
392
392
  id: 'workbench.editSessions.actions.resumeFromSerializedPayload',
393
- title: ( localize2(2439, 'Resume Changes from Serialized Data')),
393
+ title: ( localize2(2419, 'Resume Changes from Serialized Data')),
394
394
  category: 'Developer',
395
395
  f1: true,
396
396
  });
@@ -410,7 +410,7 @@ let EditSessionsContribution = class EditSessionsContribution extends Disposable
410
410
  constructor() {
411
411
  super({
412
412
  id: 'workbench.editSessions.actions.storeCurrent',
413
- title: ( localize2(2440, 'Store Working Changes in Cloud')),
413
+ title: ( localize2(2420, 'Store Working Changes in Cloud')),
414
414
  category: EDIT_SESSION_SYNC_CATEGORY,
415
415
  f1: true,
416
416
  });
@@ -419,7 +419,7 @@ let EditSessionsContribution = class EditSessionsContribution extends Disposable
419
419
  const cancellationTokenSource = ( (new CancellationTokenSource()));
420
420
  await that.progressService.withProgress({
421
421
  location: 15 ,
422
- title: ( localize(2441, 'Storing working changes...'))
422
+ title: ( localize(2421, 'Storing working changes...'))
423
423
  }, async () => {
424
424
  that.telemetryService.publicLog2('editSessions.store');
425
425
  await that.storeEditSession(true, cancellationTokenSource.token);
@@ -441,14 +441,14 @@ let EditSessionsContribution = class EditSessionsContribution extends Disposable
441
441
  }
442
442
  this.telemetryService.publicLog2('editSessions.resume');
443
443
  performance.mark('code/willResumeEditSessionFromIdentifier');
444
- progress?.report({ message: ( localize(2442, 'Checking for pending cloud changes...')) });
444
+ progress?.report({ message: ( localize(2422, 'Checking for pending cloud changes...')) });
445
445
  const data = serializedData ? { content: serializedData, ref: '' } : await this.editSessionsStorageService.read('editSessions', ref);
446
446
  if (!data) {
447
447
  if (ref === undefined && !silent) {
448
- this.notificationService.info(( localize(2443, 'There are no changes to resume from the cloud.')));
448
+ this.notificationService.info(( localize(2423, 'There are no changes to resume from the cloud.')));
449
449
  }
450
450
  else if (ref !== undefined) {
451
- this.notificationService.warn(( localize(2444, 'Could not resume changes from the cloud for ID {0}.', ref)));
451
+ this.notificationService.warn(( localize(2424, 'Could not resume changes from the cloud for ID {0}.', ref)));
452
452
  }
453
453
  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`);
454
454
  return;
@@ -458,7 +458,7 @@ let EditSessionsContribution = class EditSessionsContribution extends Disposable
458
458
  ref = data.ref;
459
459
  if (editSession.version > EditSessionSchemaVersion) {
460
460
  this.notificationService.error(( localize(
461
- 2445,
461
+ 2425,
462
462
  "Please upgrade to a newer version of {0} to resume your working changes from the cloud.",
463
463
  this.productService.nameLong
464
464
  )));
@@ -475,12 +475,12 @@ let EditSessionsContribution = class EditSessionsContribution extends Disposable
475
475
  type: Severity$1.Warning,
476
476
  message: conflictingChanges.length > 1 ?
477
477
  ( localize(
478
- 2446,
478
+ 2426,
479
479
  'Resuming your working changes from the cloud will overwrite the following {0} files. Do you want to proceed?',
480
480
  conflictingChanges.length
481
481
  )) :
482
482
  ( localize(
483
- 2447,
483
+ 2427,
484
484
  'Resuming your working changes from the cloud will overwrite {0}. Do you want to proceed?',
485
485
  basename(conflictingChanges[0].uri)
486
486
  )),
@@ -506,7 +506,7 @@ let EditSessionsContribution = class EditSessionsContribution extends Disposable
506
506
  }
507
507
  catch (ex) {
508
508
  this.logService.error('Failed to resume edit session, reason: ', ( (ex.toString())));
509
- this.notificationService.error(( localize(2448, "Failed to resume your working changes from the cloud.")));
509
+ this.notificationService.error(( localize(2428, "Failed to resume your working changes from the cloud.")));
510
510
  }
511
511
  performance.mark('code/didResumeEditSessionFromIdentifier');
512
512
  }
@@ -535,9 +535,9 @@ let EditSessionsContribution = class EditSessionsContribution extends Disposable
535
535
  this.configurationService.getValue('workbench.experimental.cloudChanges.partialMatches.enabled') === true) {
536
536
  if (!applyPartialMatch) {
537
537
  this.notificationService.prompt(Severity$1.Info, ( localize(
538
- 2449,
538
+ 2429,
539
539
  'You have pending working changes in the cloud for this workspace. Would you like to resume them?'
540
- )), [{ label: ( localize(2450, 'Resume')), run: () => this.resumeEditSession(ref, false, undefined, true) }]);
540
+ )), [{ label: ( localize(2430, 'Resume')), run: () => this.resumeEditSession(ref, false, undefined, true) }]);
541
541
  }
542
542
  else {
543
543
  folderRoot = f;
@@ -623,7 +623,7 @@ let EditSessionsContribution = class EditSessionsContribution extends Disposable
623
623
  const contents = encodeBase64((await this.fileService.readFile(uri)).value);
624
624
  editSessionSize += contents.length;
625
625
  if (editSessionSize > this.editSessionsStorageService.SIZE_LIMIT) {
626
- this.notificationService.error(( localize(2451, 'Your working changes exceed the size limit and cannot be stored.')));
626
+ this.notificationService.error(( localize(2431, 'Your working changes exceed the size limit and cannot be stored.')));
627
627
  return undefined;
628
628
  }
629
629
  workingChanges.push({ type: ChangeType.Addition, fileType: FileType.File, contents: contents, relativeFilePath: relativeFilePath });
@@ -643,7 +643,7 @@ let EditSessionsContribution = class EditSessionsContribution extends Disposable
643
643
  this.logService.info('Skipped storing working changes in the cloud as there are no edits to store.');
644
644
  if (fromStoreCommand) {
645
645
  this.notificationService.info(( localize(
646
- 2452,
646
+ 2432,
647
647
  'Skipped storing working changes in the cloud as there are no edits to store.'
648
648
  )));
649
649
  }
@@ -662,11 +662,11 @@ let EditSessionsContribution = class EditSessionsContribution extends Disposable
662
662
  switch (ex.code) {
663
663
  case "TooLarge" :
664
664
  this.telemetryService.publicLog2('editSessions.upload.failed', { reason: 'TooLarge' });
665
- this.notificationService.error(( localize(2451, 'Your working changes exceed the size limit and cannot be stored.')));
665
+ this.notificationService.error(( localize(2431, 'Your working changes exceed the size limit and cannot be stored.')));
666
666
  break;
667
667
  default:
668
668
  this.telemetryService.publicLog2('editSessions.upload.failed', { reason: 'unknown' });
669
- this.notificationService.error(( localize(2453, 'Your working changes cannot be stored.')));
669
+ this.notificationService.error(( localize(2433, 'Your working changes cannot be stored.')));
670
670
  break;
671
671
  }
672
672
  }
@@ -698,11 +698,11 @@ let EditSessionsContribution = class EditSessionsContribution extends Disposable
698
698
  if (this.hasEditSession()) {
699
699
  const disposables = ( (new DisposableStore()));
700
700
  const quickpick = disposables.add(this.quickInputService.createQuickPick());
701
- quickpick.placeholder = ( localize(2454, "Select whether to bring your working changes with you"));
701
+ quickpick.placeholder = ( localize(2434, "Select whether to bring your working changes with you"));
702
702
  quickpick.ok = false;
703
703
  quickpick.ignoreFocusOut = true;
704
- const withCloudChanges = { label: ( localize(2455, "Yes, continue with my working changes")) };
705
- const withoutCloudChanges = { label: ( localize(2456, "No, continue without my working changes")) };
704
+ const withCloudChanges = { label: ( localize(2435, "Yes, continue with my working changes")) };
705
+ const withoutCloudChanges = { label: ( localize(2436, "No, continue without my working changes")) };
706
706
  quickpick.items = [withCloudChanges, withoutCloudChanges];
707
707
  const continueWithCloudChanges = await ( (new Promise((resolve, reject) => {
708
708
  disposables.add(quickpick.onDidAccept(() => {
@@ -795,7 +795,7 @@ let EditSessionsContribution = class EditSessionsContribution extends Disposable
795
795
  }
796
796
  async run(accessor) {
797
797
  const selection = await that.fileDialogService.showOpenDialog({
798
- title: ( localize(2457, 'Select a local folder to continue working in')),
798
+ title: ( localize(2437, 'Select a local folder to continue working in')),
799
799
  canSelectFolders: true,
800
800
  canSelectMany: false,
801
801
  canSelectFiles: false,
@@ -809,7 +809,7 @@ let EditSessionsContribution = class EditSessionsContribution extends Disposable
809
809
  }
810
810
  }));
811
811
  if (getVirtualWorkspaceLocation(this.contextService.getWorkspace()) !== undefined && isNative) {
812
- this.generateStandaloneOptionCommand(openLocalFolderCommand.id, ( localize(2458, 'Continue Working in Existing Local Folder')), undefined, openLocalFolderCommand.precondition, undefined);
812
+ this.generateStandaloneOptionCommand(openLocalFolderCommand.id, ( localize(2438, 'Continue Working in Existing Local Folder')), undefined, openLocalFolderCommand.precondition, undefined);
813
813
  }
814
814
  }
815
815
  async pickContinueEditSessionDestination() {
@@ -819,7 +819,7 @@ let EditSessionsContribution = class EditSessionsContribution extends Disposable
819
819
  ? this.contextService.getWorkspace().folders[0].name
820
820
  : ( (this.contextService.getWorkspace().folders.map((folder) => folder.name))).join(', ');
821
821
  quickPick.placeholder = ( localize(
822
- 2459,
822
+ 2439,
823
823
  "Select a development environment to continue working on {0} in",
824
824
  `'${workspaceContext}'`
825
825
  ));
@@ -880,7 +880,7 @@ let EditSessionsContribution = class EditSessionsContribution extends Disposable
880
880
  createPickItems() {
881
881
  const items = [...this.continueEditSessionOptions].filter((option) => option.when === undefined || this.contextKeyService.contextMatchesRules(option.when));
882
882
  if (getVirtualWorkspaceLocation(this.contextService.getWorkspace()) !== undefined && isNative) {
883
- items.push(( (new ContinueEditSessionItem('$(folder) ' + ( localize(2460, 'Open in Local Folder')), openLocalFolderCommand.id, ( localize(2461, 'Built-in'))))));
883
+ items.push(( (new ContinueEditSessionItem('$(folder) ' + ( localize(2440, 'Open in Local Folder')), openLocalFolderCommand.id, ( localize(2441, 'Built-in'))))));
884
884
  }
885
885
  const sortedItems = items.sort((item1, item2) => item1.label.localeCompare(item2.label));
886
886
  return sortedItems.concat({ type: 'separator' }, ( (new ContinueEditSessionItem(
@@ -931,7 +931,7 @@ class ContinueEditSessionItem {
931
931
  if (documentation !== undefined) {
932
932
  this.buttons = [{
933
933
  iconClass: infoButtonClass,
934
- tooltip: ( localize(2462, 'Learn More')),
934
+ tooltip: ( localize(2442, 'Learn More')),
935
935
  }];
936
936
  }
937
937
  }
@@ -940,7 +940,7 @@ const continueEditSessionExtPoint = ExtensionsRegistry.registerExtensionPoint({
940
940
  extensionPoint: 'continueEditSession',
941
941
  jsonSchema: {
942
942
  description: ( localize(
943
- 2463,
943
+ 2443,
944
944
  'Contributes options for continuing the current edit session in a different environment'
945
945
  )),
946
946
  type: 'array',
@@ -949,35 +949,35 @@ const continueEditSessionExtPoint = ExtensionsRegistry.registerExtensionPoint({
949
949
  properties: {
950
950
  command: {
951
951
  description: ( localize(
952
- 2464,
952
+ 2444,
953
953
  'Identifier of the command to execute. The command must be declared in the \'commands\'-section and return a URI representing a different environment where the current edit session can be continued.'
954
954
  )),
955
955
  type: 'string'
956
956
  },
957
957
  group: {
958
- description: ( localize(2465, 'Group into which this item belongs.')),
958
+ description: ( localize(2445, 'Group into which this item belongs.')),
959
959
  type: 'string'
960
960
  },
961
961
  qualifiedName: {
962
962
  description: ( localize(
963
- 2466,
963
+ 2446,
964
964
  'A fully qualified name for this item which is used for display in menus.'
965
965
  )),
966
966
  type: 'string'
967
967
  },
968
968
  description: {
969
969
  description: ( localize(
970
- 2467,
970
+ 2447,
971
971
  "The url, or a command that returns the url, to the option's documentation page."
972
972
  )),
973
973
  type: 'string'
974
974
  },
975
975
  remoteGroup: {
976
- description: ( localize(2468, 'Group into which this item belongs in the remote indicator.')),
976
+ description: ( localize(2448, 'Group into which this item belongs in the remote indicator.')),
977
977
  type: 'string'
978
978
  },
979
979
  when: {
980
- description: ( localize(2469, 'Condition which must be true to show this item.')),
980
+ description: ( localize(2449, 'Condition which must be true to show this item.')),
981
981
  type: 'string'
982
982
  }
983
983
  },
@@ -994,16 +994,16 @@ workbenchRegistry.registerWorkbenchContribution(EditSessionsContribution, 3 );
994
994
  enum: ['onShutdown', 'off'],
995
995
  enumDescriptions: [
996
996
  ( localize(
997
- 2470,
997
+ 2450,
998
998
  "Automatically store current working changes in the cloud on window close."
999
999
  )),
1000
- ( localize(2471, "Never attempt to automatically store working changes in the cloud."))
1000
+ ( localize(2451, "Never attempt to automatically store working changes in the cloud."))
1001
1001
  ],
1002
1002
  'type': 'string',
1003
1003
  'tags': ['experimental', 'usesOnlineServices'],
1004
1004
  'default': 'off',
1005
1005
  'markdownDescription': ( localize(
1006
- 2472,
1006
+ 2452,
1007
1007
  "Controls whether to automatically store available working changes in the cloud for the current workspace. This setting has no effect in the web."
1008
1008
  )),
1009
1009
  },
@@ -1011,16 +1011,16 @@ workbenchRegistry.registerWorkbenchContribution(EditSessionsContribution, 3 );
1011
1011
  enum: ['onReload', 'off'],
1012
1012
  enumDescriptions: [
1013
1013
  ( localize(
1014
- 2473,
1014
+ 2453,
1015
1015
  "Automatically resume available working changes from the cloud on window reload."
1016
1016
  )),
1017
- ( localize(2474, "Never attempt to resume working changes from the cloud."))
1017
+ ( localize(2454, "Never attempt to resume working changes from the cloud."))
1018
1018
  ],
1019
1019
  'type': 'string',
1020
1020
  'tags': ['usesOnlineServices'],
1021
1021
  'default': 'onReload',
1022
1022
  'markdownDescription': ( localize(
1023
- 2475,
1023
+ 2455,
1024
1024
  "Controls whether to automatically resume available working changes stored in the cloud for the current workspace."
1025
1025
  )),
1026
1026
  },
@@ -1028,11 +1028,11 @@ workbenchRegistry.registerWorkbenchContribution(EditSessionsContribution, 3 );
1028
1028
  enum: ['prompt', 'off'],
1029
1029
  enumDescriptions: [
1030
1030
  ( localize(
1031
- 2476,
1031
+ 2456,
1032
1032
  'Prompt the user to sign in to store working changes in the cloud with Continue Working On.'
1033
1033
  )),
1034
1034
  ( localize(
1035
- 2477,
1035
+ 2457,
1036
1036
  'Do not store working changes in the cloud with Continue Working On unless the user has already turned on Cloud Changes.'
1037
1037
  ))
1038
1038
  ],
@@ -1040,7 +1040,7 @@ workbenchRegistry.registerWorkbenchContribution(EditSessionsContribution, 3 );
1040
1040
  tags: ['usesOnlineServices'],
1041
1041
  default: 'prompt',
1042
1042
  markdownDescription: ( localize(
1043
- 2478,
1043
+ 2458,
1044
1044
  'Controls whether to prompt the user to store working changes in the cloud when using Continue Working On.'
1045
1045
  ))
1046
1046
  },
@@ -1049,7 +1049,7 @@ workbenchRegistry.registerWorkbenchContribution(EditSessionsContribution, 3 );
1049
1049
  'tags': ['experimental', 'usesOnlineServices'],
1050
1050
  'default': false,
1051
1051
  'markdownDescription': ( localize(
1052
- 2479,
1052
+ 2459,
1053
1053
  "Controls whether to surface cloud changes which partially match the current session."
1054
1054
  ))
1055
1055
  }
@@ -5,7 +5,7 @@ import { RawContextKey } from 'vscode/vscode/vs/platform/contextkey/common/conte
5
5
  import { registerIcon } from 'vscode/vscode/vs/platform/theme/common/iconRegistry';
6
6
  import { StringSHA1 } from 'vscode/vscode/vs/base/common/hash';
7
7
 
8
- const EDIT_SESSION_SYNC_CATEGORY = ( localize2(5720, 'Cloud Changes'));
8
+ const EDIT_SESSION_SYNC_CATEGORY = ( localize2(5714, 'Cloud Changes'));
9
9
  var ChangeType;
10
10
  ( ((function(ChangeType) {
11
11
  ChangeType[ChangeType["Addition"] = 1] = "Addition";
@@ -22,8 +22,8 @@ const EDIT_SESSIONS_PENDING_KEY = 'editSessionsPending';
22
22
  const EDIT_SESSIONS_PENDING = ( (new RawContextKey(EDIT_SESSIONS_PENDING_KEY, false)));
23
23
  const EDIT_SESSIONS_CONTAINER_ID = 'workbench.view.editSessions';
24
24
  const EDIT_SESSIONS_DATA_VIEW_ID = 'workbench.views.editSessions.data';
25
- const EDIT_SESSIONS_TITLE = ( localize2(5720, 'Cloud Changes'));
26
- const EDIT_SESSIONS_VIEW_ICON = registerIcon('edit-sessions-view-icon', Codicon.cloudDownload, ( localize(5721, 'View icon of the cloud changes view.')));
25
+ const EDIT_SESSIONS_TITLE = ( localize2(5714, 'Cloud Changes'));
26
+ const EDIT_SESSIONS_VIEW_ICON = registerIcon('edit-sessions-view-icon', Codicon.cloudDownload, ( localize(5715, 'View icon of the cloud changes view.')));
27
27
  const EDIT_SESSIONS_SHOW_VIEW = ( (new RawContextKey('editSessionsShowView', false)));
28
28
  const EDIT_SESSIONS_SCHEME = 'vscode-edit-sessions';
29
29
  function decodeEditSessionFileContent(version, content) {