@codingame/monaco-vscode-view-common-service-override 33.0.9 → 34.0.1

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.
Files changed (48) hide show
  1. package/package.json +3 -3
  2. package/service-override/vs/workbench/contrib/webview/browser/pre/index.html +14 -8
  3. package/vscode/src/vs/sessions/common/theme.d.ts +4 -0
  4. package/vscode/src/vs/sessions/common/theme.js +44 -26
  5. package/vscode/src/vs/workbench/api/browser/viewsExtensionPoint.js +65 -57
  6. package/vscode/src/vs/workbench/browser/actions/helpActions.js +20 -20
  7. package/vscode/src/vs/workbench/browser/actions/listCommands.js +3 -3
  8. package/vscode/src/vs/workbench/browser/actions/navigationActions.js +6 -6
  9. package/vscode/src/vs/workbench/browser/parts/editor/editor.contribution.js +168 -168
  10. package/vscode/src/vs/workbench/browser/parts/editor/editorConfiguration.js +9 -9
  11. package/vscode/src/vs/workbench/browser/parts/titlebar/menubar.contribution.js +8 -8
  12. package/vscode/src/vs/workbench/browser/workbench.zenMode.contribution.js +15 -15
  13. package/vscode/src/vs/workbench/contrib/callHierarchy/browser/callHierarchy.contribution.js +12 -12
  14. package/vscode/src/vs/workbench/contrib/callHierarchy/browser/callHierarchyPeek.js +3 -3
  15. package/vscode/src/vs/workbench/contrib/callHierarchy/browser/callHierarchyTree.js +3 -3
  16. package/vscode/src/vs/workbench/contrib/customEditor/common/contributedCustomEditors.js +1 -1
  17. package/vscode/src/vs/workbench/contrib/customEditor/common/customEditor.js +1 -1
  18. package/vscode/src/vs/workbench/contrib/customEditor/common/extensionPoint.js +13 -13
  19. package/vscode/src/vs/workbench/contrib/languageStatus/browser/languageStatus.js +7 -7
  20. package/vscode/src/vs/workbench/contrib/limitIndicator/browser/limitIndicator.contribution.js +8 -8
  21. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/commands/commands.js +29 -29
  22. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/commands/devCommands.js +14 -14
  23. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/mergeEditor.contribution.js +9 -3
  24. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/mergeEditorAccessibilityHelp.js +5 -5
  25. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/view/colors.js +13 -13
  26. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/view/conflictActions.js +20 -20
  27. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/view/editors/baseCodeEditorView.js +3 -3
  28. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/view/editors/inputCodeEditorView.js +10 -10
  29. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/view/editors/resultCodeEditorView.js +3 -3
  30. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/view/mergeEditor.js +1 -1
  31. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/view/viewModel.js +1 -1
  32. package/vscode/src/vs/workbench/contrib/preferences/browser/keyboardLayoutPicker.js +12 -12
  33. package/vscode/src/vs/workbench/contrib/sash/browser/sash.contribution.js +2 -2
  34. package/vscode/src/vs/workbench/contrib/scrollLocking/browser/scrollLocking.js +7 -7
  35. package/vscode/src/vs/workbench/contrib/typeHierarchy/browser/typeHierarchy.contribution.js +10 -10
  36. package/vscode/src/vs/workbench/contrib/typeHierarchy/browser/typeHierarchyPeek.js +3 -3
  37. package/vscode/src/vs/workbench/contrib/typeHierarchy/browser/typeHierarchyTree.js +3 -3
  38. package/vscode/src/vs/workbench/contrib/webview/browser/webviewElement.d.ts +2 -0
  39. package/vscode/src/vs/workbench/contrib/webview/browser/webviewElement.js +13 -1
  40. package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewCommands.js +5 -5
  41. package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewEditorInputSerializer.js +1 -0
  42. package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewPanel.contribution.js +1 -1
  43. package/vscode/src/vs/workbench/services/editor/browser/editorResolverService.js +8 -8
  44. package/vscode/src/vs/workbench/services/history/browser/historyService.js +9 -9
  45. package/vscode/src/vs/workbench/services/progress/browser/progressService.js +10 -8
  46. package/vscode/src/vs/workbench/services/views/browser/viewDescriptorService.d.ts +0 -1
  47. package/vscode/src/vs/workbench/services/views/browser/viewDescriptorService.js +8 -15
  48. package/vscode/src/vs/workbench/services/views/browser/viewsService.js +9 -9
@@ -39,19 +39,19 @@ import { registerEditorFontConfigurations } from '@codingame/monaco-vscode-api/v
39
39
  import '@codingame/monaco-vscode-api/vscode/vs/workbench/browser/parts/editor/editor.contribution._autosave';
40
40
 
41
41
  ( Registry.as(EditorExtensions.EditorPane)).registerEditorPane(
42
- EditorPaneDescriptor.create(TextResourceEditor, TextResourceEditor.ID, ( localize(3238, "Text Editor"))),
42
+ EditorPaneDescriptor.create(TextResourceEditor, TextResourceEditor.ID, ( localize(3297, "Text Editor"))),
43
43
  [( new SyncDescriptor(UntitledTextEditorInput)), ( new SyncDescriptor(TextResourceEditorInput))]
44
44
  );
45
45
  ( Registry.as(EditorExtensions.EditorPane)).registerEditorPane(
46
- EditorPaneDescriptor.create(TextDiffEditor, TextDiffEditor.ID, ( localize(3239, "Text Diff Editor"))),
46
+ EditorPaneDescriptor.create(TextDiffEditor, TextDiffEditor.ID, ( localize(3298, "Text Diff Editor"))),
47
47
  [( new SyncDescriptor(DiffEditorInput))]
48
48
  );
49
49
  ( Registry.as(EditorExtensions.EditorPane)).registerEditorPane(
50
- EditorPaneDescriptor.create(BinaryResourceDiffEditor, BinaryResourceDiffEditor.ID, ( localize(3240, "Binary Diff Editor"))),
50
+ EditorPaneDescriptor.create(BinaryResourceDiffEditor, BinaryResourceDiffEditor.ID, ( localize(3299, "Binary Diff Editor"))),
51
51
  [( new SyncDescriptor(DiffEditorInput))]
52
52
  );
53
53
  ( Registry.as(EditorExtensions.EditorPane)).registerEditorPane(
54
- EditorPaneDescriptor.create(SideBySideEditor, SideBySideEditor.ID, ( localize(3241, "Side by Side Editor"))),
54
+ EditorPaneDescriptor.create(SideBySideEditor, SideBySideEditor.ID, ( localize(3300, "Side by Side Editor"))),
55
55
  [( new SyncDescriptor(SideBySideEditorInput))]
56
56
  );
57
57
  ( Registry.as(EditorExtensions.EditorFactory)).registerEditorSerializer(UntitledTextEditorInput.ID, UntitledTextEditorInputSerializer);
@@ -79,9 +79,9 @@ quickAccessRegistry.registerQuickAccessProvider({
79
79
  ctor: ActiveGroupEditorsByMostRecentlyUsedQuickAccess,
80
80
  prefix: ActiveGroupEditorsByMostRecentlyUsedQuickAccess.PREFIX,
81
81
  contextKey: editorPickerContextKey,
82
- placeholder: ( localize(3242, "Type the name of an editor to open it.")),
82
+ placeholder: ( localize(3301, "Type the name of an editor to open it.")),
83
83
  helpEntries: [{
84
- description: ( localize(3243, "Show Editors in Active Group by Most Recently Used")),
84
+ description: ( localize(3302, "Show Editors in Active Group by Most Recently Used")),
85
85
  commandId: ShowEditorsInActiveGroupByMostRecentlyUsedAction.ID
86
86
  }]
87
87
  });
@@ -89,9 +89,9 @@ quickAccessRegistry.registerQuickAccessProvider({
89
89
  ctor: AllEditorsByAppearanceQuickAccess,
90
90
  prefix: AllEditorsByAppearanceQuickAccess.PREFIX,
91
91
  contextKey: editorPickerContextKey,
92
- placeholder: ( localize(3242, "Type the name of an editor to open it.")),
92
+ placeholder: ( localize(3301, "Type the name of an editor to open it.")),
93
93
  helpEntries: [{
94
- description: ( localize(3244, "Show All Opened Editors By Appearance")),
94
+ description: ( localize(3303, "Show All Opened Editors By Appearance")),
95
95
  commandId: ShowAllEditorsByAppearanceAction.ID
96
96
  }]
97
97
  });
@@ -99,9 +99,9 @@ quickAccessRegistry.registerQuickAccessProvider({
99
99
  ctor: AllEditorsByMostRecentlyUsedQuickAccess,
100
100
  prefix: AllEditorsByMostRecentlyUsedQuickAccess.PREFIX,
101
101
  contextKey: editorPickerContextKey,
102
- placeholder: ( localize(3242, "Type the name of an editor to open it.")),
102
+ placeholder: ( localize(3301, "Type the name of an editor to open it.")),
103
103
  helpEntries: [{
104
- description: ( localize(3245, "Show All Opened Editors By Most Recently Used")),
104
+ description: ( localize(3304, "Show All Opened Editors By Most Recently Used")),
105
105
  commandId: ShowAllEditorsByMostRecentlyUsedAction.ID
106
106
  }]
107
107
  });
@@ -269,7 +269,7 @@ if (isMacintosh) {
269
269
  MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroup, {
270
270
  command: {
271
271
  id: LOCK_GROUP_COMMAND_ID,
272
- title: ( localize(3246, "Lock Group")),
272
+ title: ( localize(3305, "Lock Group")),
273
273
  icon: Codicon.unlock
274
274
  },
275
275
  group: "navigation",
@@ -279,7 +279,7 @@ MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroup, {
279
279
  MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroup, {
280
280
  command: {
281
281
  id: UNLOCK_GROUP_COMMAND_ID,
282
- title: ( localize(3247, "Unlock Group")),
282
+ title: ( localize(3306, "Unlock Group")),
283
283
  icon: Codicon.lock,
284
284
  toggled: ContextKeyExpr.true()
285
285
  },
@@ -290,7 +290,7 @@ MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroup, {
290
290
  MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroup, {
291
291
  command: {
292
292
  id: CLOSE_EDITOR_GROUP_COMMAND_ID,
293
- title: ( localize(3248, "Close Group")),
293
+ title: ( localize(3307, "Close Group")),
294
294
  icon: Codicon.close
295
295
  },
296
296
  group: "navigation",
@@ -300,7 +300,7 @@ MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroup, {
300
300
  MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroupContext, {
301
301
  command: {
302
302
  id: SPLIT_EDITOR_UP,
303
- title: ( localize(3249, "Split Up"))
303
+ title: ( localize(3308, "Split Up"))
304
304
  },
305
305
  group: "2_split",
306
306
  order: 10
@@ -308,7 +308,7 @@ MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroupContext, {
308
308
  MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroupContext, {
309
309
  command: {
310
310
  id: SPLIT_EDITOR_DOWN,
311
- title: ( localize(3250, "Split Down"))
311
+ title: ( localize(3309, "Split Down"))
312
312
  },
313
313
  group: "2_split",
314
314
  order: 20
@@ -316,7 +316,7 @@ MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroupContext, {
316
316
  MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroupContext, {
317
317
  command: {
318
318
  id: SPLIT_EDITOR_LEFT,
319
- title: ( localize(3251, "Split Left"))
319
+ title: ( localize(3310, "Split Left"))
320
320
  },
321
321
  group: "2_split",
322
322
  order: 30
@@ -324,7 +324,7 @@ MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroupContext, {
324
324
  MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroupContext, {
325
325
  command: {
326
326
  id: SPLIT_EDITOR_RIGHT,
327
- title: ( localize(3252, "Split Right"))
327
+ title: ( localize(3311, "Split Right"))
328
328
  },
329
329
  group: "2_split",
330
330
  order: 40
@@ -332,7 +332,7 @@ MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroupContext, {
332
332
  MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroupContext, {
333
333
  command: {
334
334
  id: NEW_EMPTY_EDITOR_WINDOW_COMMAND_ID,
335
- title: ( localize(3253, "New Window"))
335
+ title: ( localize(3312, "New Window"))
336
336
  },
337
337
  group: "3_window",
338
338
  order: 10
@@ -340,7 +340,7 @@ MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroupContext, {
340
340
  MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroupContext, {
341
341
  command: {
342
342
  id: TOGGLE_LOCK_GROUP_COMMAND_ID,
343
- title: ( localize(3254, "Lock Group")),
343
+ title: ( localize(3313, "Lock Group")),
344
344
  toggled: ActiveEditorGroupLockedContext
345
345
  },
346
346
  group: "4_lock",
@@ -350,7 +350,7 @@ MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroupContext, {
350
350
  MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroupContext, {
351
351
  command: {
352
352
  id: CLOSE_EDITOR_GROUP_COMMAND_ID,
353
- title: ( localize(3255, "Close"))
353
+ title: ( localize(3314, "Close"))
354
354
  },
355
355
  group: "5_close",
356
356
  order: 10,
@@ -359,7 +359,7 @@ MenuRegistry.appendMenuItem(MenuId.EmptyEditorGroupContext, {
359
359
  MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, {
360
360
  command: {
361
361
  id: SPLIT_EDITOR_UP,
362
- title: ( localize(3249, "Split Up"))
362
+ title: ( localize(3308, "Split Up"))
363
363
  },
364
364
  group: "2_split",
365
365
  order: 10
@@ -367,7 +367,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, {
367
367
  MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, {
368
368
  command: {
369
369
  id: SPLIT_EDITOR_DOWN,
370
- title: ( localize(3250, "Split Down"))
370
+ title: ( localize(3309, "Split Down"))
371
371
  },
372
372
  group: "2_split",
373
373
  order: 20
@@ -375,7 +375,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, {
375
375
  MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, {
376
376
  command: {
377
377
  id: SPLIT_EDITOR_LEFT,
378
- title: ( localize(3251, "Split Left"))
378
+ title: ( localize(3310, "Split Left"))
379
379
  },
380
380
  group: "2_split",
381
381
  order: 30
@@ -383,7 +383,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, {
383
383
  MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, {
384
384
  command: {
385
385
  id: SPLIT_EDITOR_RIGHT,
386
- title: ( localize(3252, "Split Right"))
386
+ title: ( localize(3311, "Split Right"))
387
387
  },
388
388
  group: "2_split",
389
389
  order: 40
@@ -391,7 +391,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, {
391
391
  MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, {
392
392
  command: {
393
393
  id: MOVE_EDITOR_GROUP_INTO_NEW_WINDOW_COMMAND_ID,
394
- title: ( localize(3256, "Move into New Window"))
394
+ title: ( localize(3315, "Move into New Window"))
395
395
  },
396
396
  group: "3_window",
397
397
  order: 10
@@ -399,14 +399,14 @@ MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, {
399
399
  MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, {
400
400
  command: {
401
401
  id: COPY_EDITOR_GROUP_INTO_NEW_WINDOW_COMMAND_ID,
402
- title: ( localize(3257, "Copy into New Window"))
402
+ title: ( localize(3316, "Copy into New Window"))
403
403
  },
404
404
  group: "3_window",
405
405
  order: 20
406
406
  });
407
407
  MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, {
408
408
  submenu: MenuId.EditorTabsBarShowTabsSubmenu,
409
- title: ( localize(3258, "Tab Bar")),
409
+ title: ( localize(3317, "Tab Bar")),
410
410
  group: "4_config",
411
411
  order: 10,
412
412
  when: ( InEditorZenModeContext.negate())
@@ -414,7 +414,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, {
414
414
  MenuRegistry.appendMenuItem(MenuId.EditorTabsBarShowTabsSubmenu, {
415
415
  command: {
416
416
  id: ShowMultipleEditorTabsAction.ID,
417
- title: ( localize(3259, "Multiple Tabs")),
417
+ title: ( localize(3318, "Multiple Tabs")),
418
418
  toggled: ( ContextKeyExpr.equals("config.workbench.editor.showTabs", "multiple"))
419
419
  },
420
420
  group: "1_config",
@@ -423,7 +423,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTabsBarShowTabsSubmenu, {
423
423
  MenuRegistry.appendMenuItem(MenuId.EditorTabsBarShowTabsSubmenu, {
424
424
  command: {
425
425
  id: ShowSingleEditorTabAction.ID,
426
- title: ( localize(3260, "Single Tab")),
426
+ title: ( localize(3319, "Single Tab")),
427
427
  toggled: ( ContextKeyExpr.equals("config.workbench.editor.showTabs", "single"))
428
428
  },
429
429
  group: "1_config",
@@ -432,7 +432,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTabsBarShowTabsSubmenu, {
432
432
  MenuRegistry.appendMenuItem(MenuId.EditorTabsBarShowTabsSubmenu, {
433
433
  command: {
434
434
  id: HideEditorTabsAction.ID,
435
- title: ( localize(3261, "Hidden")),
435
+ title: ( localize(3320, "Hidden")),
436
436
  toggled: ( ContextKeyExpr.equals("config.workbench.editor.showTabs", "none"))
437
437
  },
438
438
  group: "1_config",
@@ -440,7 +440,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTabsBarShowTabsSubmenu, {
440
440
  });
441
441
  MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, {
442
442
  submenu: MenuId.EditorTabsBarShowTabsZenModeSubmenu,
443
- title: ( localize(3258, "Tab Bar")),
443
+ title: ( localize(3317, "Tab Bar")),
444
444
  group: "4_config",
445
445
  order: 10,
446
446
  when: InEditorZenModeContext
@@ -448,7 +448,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, {
448
448
  MenuRegistry.appendMenuItem(MenuId.EditorTabsBarShowTabsZenModeSubmenu, {
449
449
  command: {
450
450
  id: ZenShowMultipleEditorTabsAction.ID,
451
- title: ( localize(3259, "Multiple Tabs")),
451
+ title: ( localize(3318, "Multiple Tabs")),
452
452
  toggled: ( ContextKeyExpr.equals("config.zenMode.showTabs", "multiple"))
453
453
  },
454
454
  group: "1_config",
@@ -457,7 +457,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTabsBarShowTabsZenModeSubmenu, {
457
457
  MenuRegistry.appendMenuItem(MenuId.EditorTabsBarShowTabsZenModeSubmenu, {
458
458
  command: {
459
459
  id: ZenShowSingleEditorTabAction.ID,
460
- title: ( localize(3260, "Single Tab")),
460
+ title: ( localize(3319, "Single Tab")),
461
461
  toggled: ( ContextKeyExpr.equals("config.zenMode.showTabs", "single"))
462
462
  },
463
463
  group: "1_config",
@@ -466,7 +466,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTabsBarShowTabsZenModeSubmenu, {
466
466
  MenuRegistry.appendMenuItem(MenuId.EditorTabsBarShowTabsZenModeSubmenu, {
467
467
  command: {
468
468
  id: ZenHideEditorTabsAction.ID,
469
- title: ( localize(3261, "Hidden")),
469
+ title: ( localize(3320, "Hidden")),
470
470
  toggled: ( ContextKeyExpr.equals("config.zenMode.showTabs", "none"))
471
471
  },
472
472
  group: "1_config",
@@ -474,14 +474,14 @@ MenuRegistry.appendMenuItem(MenuId.EditorTabsBarShowTabsZenModeSubmenu, {
474
474
  });
475
475
  MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, {
476
476
  submenu: MenuId.EditorActionsPositionSubmenu,
477
- title: ( localize(3262, "Editor Actions Position")),
477
+ title: ( localize(3321, "Editor Actions Position")),
478
478
  group: "4_config",
479
479
  order: 20
480
480
  });
481
481
  MenuRegistry.appendMenuItem(MenuId.EditorActionsPositionSubmenu, {
482
482
  command: {
483
483
  id: EditorActionsDefaultAction.ID,
484
- title: ( localize(3258, "Tab Bar")),
484
+ title: ( localize(3317, "Tab Bar")),
485
485
  toggled: ( ContextKeyExpr.equals("config.workbench.editor.editorActionsLocation", "default"))
486
486
  },
487
487
  group: "1_config",
@@ -491,7 +491,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorActionsPositionSubmenu, {
491
491
  MenuRegistry.appendMenuItem(MenuId.EditorActionsPositionSubmenu, {
492
492
  command: {
493
493
  id: EditorActionsTitleBarAction.ID,
494
- title: ( localize(3263, "Title Bar")),
494
+ title: ( localize(3322, "Title Bar")),
495
495
  toggled: ( ContextKeyExpr.or(( ContextKeyExpr.equals("config.workbench.editor.editorActionsLocation", "titleBar")), ( ContextKeyExpr.and(( ContextKeyExpr.equals("config.workbench.editor.showTabs", "none")), ( ContextKeyExpr.equals("config.workbench.editor.editorActionsLocation", "default"))))))
496
496
  },
497
497
  group: "1_config",
@@ -500,7 +500,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorActionsPositionSubmenu, {
500
500
  MenuRegistry.appendMenuItem(MenuId.EditorActionsPositionSubmenu, {
501
501
  command: {
502
502
  id: HideEditorActionsAction.ID,
503
- title: ( localize(3264, "Hidden")),
503
+ title: ( localize(3323, "Hidden")),
504
504
  toggled: ( ContextKeyExpr.equals("config.workbench.editor.editorActionsLocation", "hidden"))
505
505
  },
506
506
  group: "1_config",
@@ -509,7 +509,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorActionsPositionSubmenu, {
509
509
  MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, {
510
510
  command: {
511
511
  id: ConfigureEditorTabsAction.ID,
512
- title: ( localize(3265, "Configure Tabs"))
512
+ title: ( localize(3324, "Configure Tabs"))
513
513
  },
514
514
  group: "9_configure",
515
515
  order: 10
@@ -517,7 +517,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTabsBarContext, {
517
517
  MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
518
518
  command: {
519
519
  id: CLOSE_EDITOR_COMMAND_ID,
520
- title: ( localize(3255, "Close"))
520
+ title: ( localize(3314, "Close"))
521
521
  },
522
522
  group: "1_close",
523
523
  order: 10
@@ -525,7 +525,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
525
525
  MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
526
526
  command: {
527
527
  id: CLOSE_OTHER_EDITORS_IN_GROUP_COMMAND_ID,
528
- title: ( localize(3266, "Close Others")),
528
+ title: ( localize(3325, "Close Others")),
529
529
  precondition: ( EditorGroupEditorsCountContext.notEqualsTo("1"))
530
530
  },
531
531
  group: "1_close",
@@ -534,7 +534,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
534
534
  MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
535
535
  command: {
536
536
  id: CLOSE_EDITORS_TO_THE_RIGHT_COMMAND_ID,
537
- title: ( localize(3267, "Close to the Right")),
537
+ title: ( localize(3326, "Close to the Right")),
538
538
  precondition: ( ContextKeyExpr.and(( ActiveEditorLastInGroupContext.toNegated()), ( MultipleEditorsSelectedInGroupContext.negate())))
539
539
  },
540
540
  group: "1_close",
@@ -544,7 +544,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
544
544
  MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
545
545
  command: {
546
546
  id: CLOSE_SAVED_EDITORS_COMMAND_ID,
547
- title: ( localize(3268, "Close Saved"))
547
+ title: ( localize(3327, "Close Saved"))
548
548
  },
549
549
  group: "1_close",
550
550
  order: 40
@@ -552,7 +552,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
552
552
  MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
553
553
  command: {
554
554
  id: CLOSE_EDITORS_IN_GROUP_COMMAND_ID,
555
- title: ( localize(3269, "Close All"))
555
+ title: ( localize(3328, "Close All"))
556
556
  },
557
557
  group: "1_close",
558
558
  order: 50
@@ -560,7 +560,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
560
560
  MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
561
561
  command: {
562
562
  id: REOPEN_WITH_COMMAND_ID,
563
- title: ( localize(3270, "Reopen Editor With..."))
563
+ title: ( localize(3329, "Reopen Editor With..."))
564
564
  },
565
565
  group: "1_open",
566
566
  order: 10,
@@ -569,7 +569,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
569
569
  MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
570
570
  command: {
571
571
  id: KEEP_EDITOR_COMMAND_ID,
572
- title: ( localize(3271, "Keep Open")),
572
+ title: ( localize(3330, "Keep Open")),
573
573
  precondition: ( ActiveEditorPinnedContext.toNegated())
574
574
  },
575
575
  group: "3_preview",
@@ -579,7 +579,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
579
579
  MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
580
580
  command: {
581
581
  id: PIN_EDITOR_COMMAND_ID,
582
- title: ( localize(3272, "Pin"))
582
+ title: ( localize(3331, "Pin"))
583
583
  },
584
584
  group: "3_preview",
585
585
  order: 20,
@@ -588,7 +588,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
588
588
  MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
589
589
  command: {
590
590
  id: UNPIN_EDITOR_COMMAND_ID,
591
- title: ( localize(3273, "Unpin"))
591
+ title: ( localize(3332, "Unpin"))
592
592
  },
593
593
  group: "3_preview",
594
594
  order: 20,
@@ -597,7 +597,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
597
597
  MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
598
598
  command: {
599
599
  id: SPLIT_EDITOR,
600
- title: ( localize(3252, "Split Right"))
600
+ title: ( localize(3311, "Split Right"))
601
601
  },
602
602
  group: "5_split",
603
603
  order: 10,
@@ -606,7 +606,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
606
606
  MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
607
607
  command: {
608
608
  id: SPLIT_EDITOR,
609
- title: ( localize(3250, "Split Down"))
609
+ title: ( localize(3309, "Split Down"))
610
610
  },
611
611
  group: "5_split",
612
612
  order: 10,
@@ -614,14 +614,14 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
614
614
  });
615
615
  MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
616
616
  submenu: MenuId.EditorSplitMoveSubmenu,
617
- title: ( localize(3274, "Split & Move")),
617
+ title: ( localize(3333, "Split & Move")),
618
618
  group: "5_split",
619
619
  order: 15
620
620
  });
621
621
  MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
622
622
  command: {
623
623
  id: MOVE_EDITOR_INTO_NEW_WINDOW_COMMAND_ID,
624
- title: ( localize(3275, "Move into New Window"))
624
+ title: ( localize(3334, "Move into New Window"))
625
625
  },
626
626
  group: "7_new_window",
627
627
  order: 10
@@ -629,14 +629,14 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
629
629
  MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
630
630
  command: {
631
631
  id: COPY_EDITOR_INTO_NEW_WINDOW_COMMAND_ID,
632
- title: ( localize(3276, "Copy into New Window"))
632
+ title: ( localize(3335, "Copy into New Window"))
633
633
  },
634
634
  group: "7_new_window",
635
635
  order: 20
636
636
  });
637
637
  MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
638
638
  submenu: MenuId.EditorTitleContextShare,
639
- title: ( localize(3277, "Share")),
639
+ title: ( localize(3336, "Share")),
640
640
  group: "11_share",
641
641
  order: -1,
642
642
  when: ( MultipleEditorsSelectedInGroupContext.negate())
@@ -644,7 +644,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitleContext, {
644
644
  MenuRegistry.appendMenuItem(MenuId.EditorSplitMoveSubmenu, {
645
645
  command: {
646
646
  id: SPLIT_EDITOR_UP,
647
- title: ( localize(3249, "Split Up"))
647
+ title: ( localize(3308, "Split Up"))
648
648
  },
649
649
  group: "1_split",
650
650
  order: 10
@@ -652,7 +652,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorSplitMoveSubmenu, {
652
652
  MenuRegistry.appendMenuItem(MenuId.EditorSplitMoveSubmenu, {
653
653
  command: {
654
654
  id: SPLIT_EDITOR_DOWN,
655
- title: ( localize(3250, "Split Down"))
655
+ title: ( localize(3309, "Split Down"))
656
656
  },
657
657
  group: "1_split",
658
658
  order: 20
@@ -660,7 +660,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorSplitMoveSubmenu, {
660
660
  MenuRegistry.appendMenuItem(MenuId.EditorSplitMoveSubmenu, {
661
661
  command: {
662
662
  id: SPLIT_EDITOR_LEFT,
663
- title: ( localize(3251, "Split Left"))
663
+ title: ( localize(3310, "Split Left"))
664
664
  },
665
665
  group: "1_split",
666
666
  order: 30
@@ -668,7 +668,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorSplitMoveSubmenu, {
668
668
  MenuRegistry.appendMenuItem(MenuId.EditorSplitMoveSubmenu, {
669
669
  command: {
670
670
  id: SPLIT_EDITOR_RIGHT,
671
- title: ( localize(3252, "Split Right"))
671
+ title: ( localize(3311, "Split Right"))
672
672
  },
673
673
  group: "1_split",
674
674
  order: 40
@@ -676,7 +676,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorSplitMoveSubmenu, {
676
676
  MenuRegistry.appendMenuItem(MenuId.EditorSplitMoveSubmenu, {
677
677
  command: {
678
678
  id: MOVE_EDITOR_INTO_ABOVE_GROUP,
679
- title: ( localize(3278, "Move Above"))
679
+ title: ( localize(3337, "Move Above"))
680
680
  },
681
681
  group: "2_move",
682
682
  order: 10
@@ -684,7 +684,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorSplitMoveSubmenu, {
684
684
  MenuRegistry.appendMenuItem(MenuId.EditorSplitMoveSubmenu, {
685
685
  command: {
686
686
  id: MOVE_EDITOR_INTO_BELOW_GROUP,
687
- title: ( localize(3279, "Move Below"))
687
+ title: ( localize(3338, "Move Below"))
688
688
  },
689
689
  group: "2_move",
690
690
  order: 20
@@ -692,7 +692,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorSplitMoveSubmenu, {
692
692
  MenuRegistry.appendMenuItem(MenuId.EditorSplitMoveSubmenu, {
693
693
  command: {
694
694
  id: MOVE_EDITOR_INTO_LEFT_GROUP,
695
- title: ( localize(3280, "Move Left"))
695
+ title: ( localize(3339, "Move Left"))
696
696
  },
697
697
  group: "2_move",
698
698
  order: 30
@@ -700,7 +700,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorSplitMoveSubmenu, {
700
700
  MenuRegistry.appendMenuItem(MenuId.EditorSplitMoveSubmenu, {
701
701
  command: {
702
702
  id: MOVE_EDITOR_INTO_RIGHT_GROUP,
703
- title: ( localize(3281, "Move Right"))
703
+ title: ( localize(3340, "Move Right"))
704
704
  },
705
705
  group: "2_move",
706
706
  order: 40
@@ -708,7 +708,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorSplitMoveSubmenu, {
708
708
  MenuRegistry.appendMenuItem(MenuId.EditorSplitMoveSubmenu, {
709
709
  command: {
710
710
  id: SPLIT_EDITOR_IN_GROUP,
711
- title: ( localize(3282, "Split in Group")),
711
+ title: ( localize(3341, "Split in Group")),
712
712
  precondition: ( MultipleEditorsSelectedInGroupContext.negate())
713
713
  },
714
714
  group: "3_split_in_group",
@@ -718,7 +718,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorSplitMoveSubmenu, {
718
718
  MenuRegistry.appendMenuItem(MenuId.EditorSplitMoveSubmenu, {
719
719
  command: {
720
720
  id: JOIN_EDITOR_IN_GROUP,
721
- title: ( localize(3283, "Join in Group")),
721
+ title: ( localize(3342, "Join in Group")),
722
722
  precondition: ( MultipleEditorsSelectedInGroupContext.negate())
723
723
  },
724
724
  group: "3_split_in_group",
@@ -728,7 +728,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorSplitMoveSubmenu, {
728
728
  MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
729
729
  command: {
730
730
  id: TOGGLE_DIFF_SIDE_BY_SIDE,
731
- title: ( localize(3284, "Inline View")),
731
+ title: ( localize(3343, "Inline View")),
732
732
  toggled: ( ContextKeyExpr.equals("config.diffEditor.renderSideBySide", false))
733
733
  },
734
734
  group: "1_diff",
@@ -738,7 +738,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
738
738
  MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
739
739
  command: {
740
740
  id: SHOW_EDITORS_IN_GROUP,
741
- title: ( localize(3285, "Show Opened Editors"))
741
+ title: ( localize(3344, "Show Opened Editors"))
742
742
  },
743
743
  group: "3_open",
744
744
  order: 10,
@@ -747,7 +747,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
747
747
  MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
748
748
  command: {
749
749
  id: CLOSE_EDITORS_IN_GROUP_COMMAND_ID,
750
- title: ( localize(3269, "Close All"))
750
+ title: ( localize(3328, "Close All"))
751
751
  },
752
752
  group: "5_close",
753
753
  order: 10,
@@ -756,7 +756,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
756
756
  MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
757
757
  command: {
758
758
  id: CLOSE_SAVED_EDITORS_COMMAND_ID,
759
- title: ( localize(3268, "Close Saved"))
759
+ title: ( localize(3327, "Close Saved"))
760
760
  },
761
761
  group: "5_close",
762
762
  order: 20,
@@ -765,7 +765,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
765
765
  MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
766
766
  command: {
767
767
  id: TOGGLE_KEEP_EDITORS_COMMAND_ID,
768
- title: ( localize(3286, "Enable Preview Editors")),
768
+ title: ( localize(3345, "Enable Preview Editors")),
769
769
  toggled: ( ContextKeyExpr.has("config.workbench.editor.enablePreview"))
770
770
  },
771
771
  group: "7_settings",
@@ -775,7 +775,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
775
775
  MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
776
776
  command: {
777
777
  id: TOGGLE_MAXIMIZE_EDITOR_GROUP,
778
- title: ( localize(3287, "Maximize Group"))
778
+ title: ( localize(3346, "Maximize Group"))
779
779
  },
780
780
  group: "8_group_operations",
781
781
  order: 5,
@@ -784,7 +784,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
784
784
  MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
785
785
  command: {
786
786
  id: TOGGLE_MAXIMIZE_EDITOR_GROUP,
787
- title: ( localize(3288, "Unmaximize Group"))
787
+ title: ( localize(3347, "Unmaximize Group"))
788
788
  },
789
789
  group: "8_group_operations",
790
790
  order: 5,
@@ -793,7 +793,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
793
793
  MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
794
794
  command: {
795
795
  id: TOGGLE_LOCK_GROUP_COMMAND_ID,
796
- title: ( localize(3289, "Lock Group")),
796
+ title: ( localize(3348, "Lock Group")),
797
797
  toggled: ActiveEditorGroupLockedContext
798
798
  },
799
799
  group: "8_group_operations",
@@ -803,7 +803,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
803
803
  MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
804
804
  command: {
805
805
  id: ConfigureEditorAction.ID,
806
- title: ( localize(3290, "Configure Editors"))
806
+ title: ( localize(3349, "Configure Editors"))
807
807
  },
808
808
  group: "9_configure",
809
809
  order: 10,
@@ -849,101 +849,101 @@ const SPLIT_ORDER = 100000;
849
849
  const CLOSE_ORDER = 1000000;
850
850
  appendEditorToolItem({
851
851
  id: SPLIT_EDITOR,
852
- title: ( localize(3291, "Split Editor Right")),
852
+ title: ( localize(3350, "Split Editor Right")),
853
853
  icon: Codicon.splitHorizontal
854
854
  }, ( SplitEditorsVertically.negate()), SPLIT_ORDER, {
855
855
  id: SPLIT_EDITOR_DOWN,
856
- title: ( localize(3292, "Split Editor Down")),
856
+ title: ( localize(3351, "Split Editor Down")),
857
857
  icon: Codicon.splitVertical
858
858
  });
859
859
  appendEditorToolItem({
860
860
  id: SPLIT_EDITOR,
861
- title: ( localize(3292, "Split Editor Down")),
861
+ title: ( localize(3351, "Split Editor Down")),
862
862
  icon: Codicon.splitVertical
863
863
  }, SplitEditorsVertically, SPLIT_ORDER, {
864
864
  id: SPLIT_EDITOR_RIGHT,
865
- title: ( localize(3291, "Split Editor Right")),
865
+ title: ( localize(3350, "Split Editor Right")),
866
866
  icon: Codicon.splitHorizontal
867
867
  });
868
868
  appendEditorToolItem({
869
869
  id: TOGGLE_SPLIT_EDITOR_IN_GROUP_LAYOUT,
870
- title: ( localize(3293, "Toggle Layout")),
870
+ title: ( localize(3352, "Toggle Layout")),
871
871
  icon: Codicon.editorLayout
872
872
  }, SideBySideEditorActiveContext, SPLIT_ORDER - 1);
873
873
  appendEditorToolItem({
874
874
  id: CLOSE_EDITOR_COMMAND_ID,
875
- title: ( localize(3255, "Close")),
875
+ title: ( localize(3314, "Close")),
876
876
  icon: Codicon.close
877
877
  }, ( ContextKeyExpr.and(( EditorTabsVisibleContext.toNegated()), ( ActiveEditorDirtyContext.toNegated()), ( ActiveEditorStickyContext.toNegated()))), CLOSE_ORDER, {
878
878
  id: CLOSE_EDITORS_IN_GROUP_COMMAND_ID,
879
- title: ( localize(3269, "Close All")),
879
+ title: ( localize(3328, "Close All")),
880
880
  icon: Codicon.closeAll
881
881
  });
882
882
  appendEditorToolItem({
883
883
  id: CLOSE_EDITOR_COMMAND_ID,
884
- title: ( localize(3255, "Close")),
884
+ title: ( localize(3314, "Close")),
885
885
  icon: Codicon.closeDirty
886
886
  }, ( ContextKeyExpr.and(( EditorTabsVisibleContext.toNegated()), ActiveEditorDirtyContext, ( ActiveEditorStickyContext.toNegated()))), CLOSE_ORDER, {
887
887
  id: CLOSE_EDITORS_IN_GROUP_COMMAND_ID,
888
- title: ( localize(3269, "Close All")),
888
+ title: ( localize(3328, "Close All")),
889
889
  icon: Codicon.closeAll
890
890
  });
891
891
  appendEditorToolItem({
892
892
  id: UNPIN_EDITOR_COMMAND_ID,
893
- title: ( localize(3273, "Unpin")),
893
+ title: ( localize(3332, "Unpin")),
894
894
  icon: Codicon.pinned
895
895
  }, ( ContextKeyExpr.and(( EditorTabsVisibleContext.toNegated()), ( ActiveEditorDirtyContext.toNegated()), ActiveEditorStickyContext)), CLOSE_ORDER, {
896
896
  id: CLOSE_EDITOR_COMMAND_ID,
897
- title: ( localize(3255, "Close")),
897
+ title: ( localize(3314, "Close")),
898
898
  icon: Codicon.close
899
899
  });
900
900
  appendEditorToolItem({
901
901
  id: UNPIN_EDITOR_COMMAND_ID,
902
- title: ( localize(3273, "Unpin")),
902
+ title: ( localize(3332, "Unpin")),
903
903
  icon: Codicon.pinnedDirty
904
904
  }, ( ContextKeyExpr.and(( EditorTabsVisibleContext.toNegated()), ActiveEditorDirtyContext, ActiveEditorStickyContext)), CLOSE_ORDER, {
905
905
  id: CLOSE_EDITOR_COMMAND_ID,
906
- title: ( localize(3255, "Close")),
906
+ title: ( localize(3314, "Close")),
907
907
  icon: Codicon.close
908
908
  });
909
909
  appendEditorToolItem({
910
910
  id: LOCK_GROUP_COMMAND_ID,
911
- title: ( localize(3294, "Lock Group")),
911
+ title: ( localize(3353, "Lock Group")),
912
912
  icon: Codicon.unlock
913
913
  }, ( ContextKeyExpr.and(IsAuxiliaryWindowContext, ( ActiveEditorGroupLockedContext.toNegated()))), CLOSE_ORDER - 1);
914
914
  appendEditorToolItem({
915
915
  id: UNLOCK_GROUP_COMMAND_ID,
916
- title: ( localize(3295, "Unlock Group")),
916
+ title: ( localize(3354, "Unlock Group")),
917
917
  icon: Codicon.lock,
918
918
  toggled: ContextKeyExpr.true()
919
919
  }, ActiveEditorGroupLockedContext, CLOSE_ORDER - 1);
920
- const previousChangeIcon = registerIcon("diff-editor-previous-change", Codicon.arrowUp, ( localize(3296, "Icon for the previous change action in the diff editor.")));
920
+ const previousChangeIcon = registerIcon("diff-editor-previous-change", Codicon.arrowUp, ( localize(3355, "Icon for the previous change action in the diff editor.")));
921
921
  appendEditorToolItem({
922
922
  id: GOTO_PREVIOUS_CHANGE,
923
- title: ( localize(3297, "Previous Change")),
923
+ title: ( localize(3356, "Previous Change")),
924
924
  icon: previousChangeIcon
925
925
  }, TextCompareEditorActiveContext, 10, undefined, EditorContextKeys.hasChanges, true, true);
926
- const nextChangeIcon = registerIcon("diff-editor-next-change", Codicon.arrowDown, ( localize(3298, "Icon for the next change action in the diff editor.")));
926
+ const nextChangeIcon = registerIcon("diff-editor-next-change", Codicon.arrowDown, ( localize(3357, "Icon for the next change action in the diff editor.")));
927
927
  appendEditorToolItem({
928
928
  id: GOTO_NEXT_CHANGE,
929
- title: ( localize(3299, "Next Change")),
929
+ title: ( localize(3358, "Next Change")),
930
930
  icon: nextChangeIcon
931
931
  }, TextCompareEditorActiveContext, 11, undefined, EditorContextKeys.hasChanges, true, true);
932
932
  appendEditorToolItem({
933
933
  id: DIFF_SWAP_SIDES,
934
- title: ( localize(3300, "Swap Left and Right Side")),
934
+ title: ( localize(3359, "Swap Left and Right Side")),
935
935
  icon: Codicon.arrowSwap
936
936
  }, ( ContextKeyExpr.and(TextCompareEditorActiveContext, ActiveCompareEditorCanSwapContext)), 15, undefined, undefined);
937
937
  appendEditorToolItem({
938
938
  id: ReOpenInTextEditorAction.ID,
939
- title: ( localize(3301, "Reopen as Text")),
939
+ title: ( localize(3360, "Reopen as Text")),
940
940
  icon: Codicon.fileCode
941
- }, ActiveCustomEditorTextDiffContext, 16, undefined, undefined);
942
- const toggleWhitespace = registerIcon("diff-editor-toggle-whitespace", Codicon.whitespace, ( localize(3302, "Icon for the toggle whitespace action in the diff editor.")));
941
+ }, ActiveCustomEditorTextDiffContext, 16, undefined, undefined, undefined, true);
942
+ const toggleWhitespace = registerIcon("diff-editor-toggle-whitespace", Codicon.whitespace, ( localize(3361, "Icon for the toggle whitespace action in the diff editor.")));
943
943
  MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
944
944
  command: {
945
945
  id: TOGGLE_DIFF_IGNORE_TRIM_WHITESPACE,
946
- title: ( localize(3303, "Show Leading/Trailing Whitespace Differences")),
946
+ title: ( localize(3362, "Show Leading/Trailing Whitespace Differences")),
947
947
  icon: toggleWhitespace,
948
948
  precondition: TextCompareEditorActiveContext,
949
949
  toggled: ( ContextKeyExpr.equals("config.diffEditor.ignoreTrimWhitespace", false))
@@ -955,7 +955,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
955
955
  MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
956
956
  command: {
957
957
  id: KEEP_EDITOR_COMMAND_ID,
958
- title: ( localize2(3304, "Keep Editor")),
958
+ title: ( localize2(3363, "Keep Editor")),
959
959
  category: Categories.View
960
960
  },
961
961
  when: ( ContextKeyExpr.has("config.workbench.editor.enablePreview"))
@@ -963,56 +963,56 @@ MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
963
963
  MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
964
964
  command: {
965
965
  id: PIN_EDITOR_COMMAND_ID,
966
- title: ( localize2(3305, "Pin Editor")),
966
+ title: ( localize2(3364, "Pin Editor")),
967
967
  category: Categories.View
968
968
  }
969
969
  });
970
970
  MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
971
971
  command: {
972
972
  id: UNPIN_EDITOR_COMMAND_ID,
973
- title: ( localize2(3306, "Unpin Editor")),
973
+ title: ( localize2(3365, "Unpin Editor")),
974
974
  category: Categories.View
975
975
  }
976
976
  });
977
977
  MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
978
978
  command: {
979
979
  id: CLOSE_EDITOR_COMMAND_ID,
980
- title: ( localize2(3307, "Close Editor")),
980
+ title: ( localize2(3366, "Close Editor")),
981
981
  category: Categories.View
982
982
  }
983
983
  });
984
984
  MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
985
985
  command: {
986
986
  id: CLOSE_PINNED_EDITOR_COMMAND_ID,
987
- title: ( localize2(3308, "Close Pinned Editor")),
987
+ title: ( localize2(3367, "Close Pinned Editor")),
988
988
  category: Categories.View
989
989
  }
990
990
  });
991
991
  MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
992
992
  command: {
993
993
  id: CLOSE_EDITORS_IN_GROUP_COMMAND_ID,
994
- title: ( localize2(3309, "Close All Editors in Group")),
994
+ title: ( localize2(3368, "Close All Editors in Group")),
995
995
  category: Categories.View
996
996
  }
997
997
  });
998
998
  MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
999
999
  command: {
1000
1000
  id: CLOSE_SAVED_EDITORS_COMMAND_ID,
1001
- title: ( localize2(3310, "Close Saved Editors in Group")),
1001
+ title: ( localize2(3369, "Close Saved Editors in Group")),
1002
1002
  category: Categories.View
1003
1003
  }
1004
1004
  });
1005
1005
  MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
1006
1006
  command: {
1007
1007
  id: CLOSE_OTHER_EDITORS_IN_GROUP_COMMAND_ID,
1008
- title: ( localize2(3311, "Close Other Editors in Group")),
1008
+ title: ( localize2(3370, "Close Other Editors in Group")),
1009
1009
  category: Categories.View
1010
1010
  }
1011
1011
  });
1012
1012
  MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
1013
1013
  command: {
1014
1014
  id: CLOSE_EDITORS_TO_THE_RIGHT_COMMAND_ID,
1015
- title: ( localize2(3312, "Close Editors to the Right in Group")),
1015
+ title: ( localize2(3371, "Close Editors to the Right in Group")),
1016
1016
  category: Categories.View
1017
1017
  },
1018
1018
  when: ( ActiveEditorLastInGroupContext.toNegated())
@@ -1020,7 +1020,7 @@ MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
1020
1020
  MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
1021
1021
  command: {
1022
1022
  id: CLOSE_EDITORS_AND_GROUP_COMMAND_ID,
1023
- title: ( localize2(3313, "Close Editor Group")),
1023
+ title: ( localize2(3372, "Close Editor Group")),
1024
1024
  category: Categories.View
1025
1025
  },
1026
1026
  when: MultipleEditorGroupsContext
@@ -1028,7 +1028,7 @@ MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
1028
1028
  MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
1029
1029
  command: {
1030
1030
  id: REOPEN_WITH_COMMAND_ID,
1031
- title: ( localize2(3270, "Reopen Editor With...")),
1031
+ title: ( localize2(3329, "Reopen Editor With...")),
1032
1032
  category: Categories.View
1033
1033
  },
1034
1034
  when: ActiveEditorAvailableEditorIdsContext
@@ -1037,7 +1037,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarRecentMenu, {
1037
1037
  group: "1_editor",
1038
1038
  command: {
1039
1039
  id: ReopenClosedEditorAction.ID,
1040
- title: ( localize(3314, "&&Reopen Closed Editor")),
1040
+ title: ( localize(3373, "&&Reopen Closed Editor")),
1041
1041
  precondition: ( ContextKeyExpr.has("canReopenClosedEditor"))
1042
1042
  },
1043
1043
  order: 1
@@ -1046,12 +1046,12 @@ MenuRegistry.appendMenuItem(MenuId.MenubarRecentMenu, {
1046
1046
  group: "z_clear",
1047
1047
  command: {
1048
1048
  id: ClearRecentFilesAction.ID,
1049
- title: ( localize(3315, "&&Clear Recently Opened..."))
1049
+ title: ( localize(3374, "&&Clear Recently Opened..."))
1050
1050
  },
1051
1051
  order: 1
1052
1052
  });
1053
1053
  MenuRegistry.appendMenuItem(MenuId.MenubarFileMenu, {
1054
- title: ( localize(3316, "Share")),
1054
+ title: ( localize(3375, "Share")),
1055
1055
  submenu: MenuId.MenubarShare,
1056
1056
  group: "45_share",
1057
1057
  order: 1,
@@ -1059,7 +1059,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarFileMenu, {
1059
1059
  });
1060
1060
  MenuRegistry.appendMenuItem(MenuId.MenubarViewMenu, {
1061
1061
  group: "2_appearance",
1062
- title: ( localize(3317, "Editor &&Layout")),
1062
+ title: ( localize(3376, "Editor &&Layout")),
1063
1063
  submenu: MenuId.MenubarLayoutMenu,
1064
1064
  order: 2,
1065
1065
  when: ( IsSessionsWindowContext.negate())
@@ -1069,8 +1069,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
1069
1069
  command: {
1070
1070
  id: SPLIT_EDITOR_UP,
1071
1071
  title: {
1072
- ...( localize2(3318, "Split Up")),
1073
- mnemonicTitle: ( localize(3319, "Split &&Up"))
1072
+ ...( localize2(3377, "Split Up")),
1073
+ mnemonicTitle: ( localize(3378, "Split &&Up"))
1074
1074
  }
1075
1075
  },
1076
1076
  order: 1
@@ -1080,8 +1080,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
1080
1080
  command: {
1081
1081
  id: SPLIT_EDITOR_DOWN,
1082
1082
  title: {
1083
- ...( localize2(3320, "Split Down")),
1084
- mnemonicTitle: ( localize(3321, "Split &&Down"))
1083
+ ...( localize2(3379, "Split Down")),
1084
+ mnemonicTitle: ( localize(3380, "Split &&Down"))
1085
1085
  }
1086
1086
  },
1087
1087
  order: 2
@@ -1091,8 +1091,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
1091
1091
  command: {
1092
1092
  id: SPLIT_EDITOR_LEFT,
1093
1093
  title: {
1094
- ...( localize2(3322, "Split Left")),
1095
- mnemonicTitle: ( localize(3323, "Split &&Left"))
1094
+ ...( localize2(3381, "Split Left")),
1095
+ mnemonicTitle: ( localize(3382, "Split &&Left"))
1096
1096
  }
1097
1097
  },
1098
1098
  order: 3
@@ -1102,8 +1102,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
1102
1102
  command: {
1103
1103
  id: SPLIT_EDITOR_RIGHT,
1104
1104
  title: {
1105
- ...( localize2(3324, "Split Right")),
1106
- mnemonicTitle: ( localize(3325, "Split &&Right"))
1105
+ ...( localize2(3383, "Split Right")),
1106
+ mnemonicTitle: ( localize(3384, "Split &&Right"))
1107
1107
  }
1108
1108
  },
1109
1109
  order: 4
@@ -1113,8 +1113,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
1113
1113
  command: {
1114
1114
  id: SPLIT_EDITOR_IN_GROUP,
1115
1115
  title: {
1116
- ...( localize2(3326, "Split in Group")),
1117
- mnemonicTitle: ( localize(3327, "Split in &&Group"))
1116
+ ...( localize2(3385, "Split in Group")),
1117
+ mnemonicTitle: ( localize(3386, "Split in &&Group"))
1118
1118
  }
1119
1119
  },
1120
1120
  when: ActiveEditorCanSplitInGroupContext,
@@ -1125,8 +1125,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
1125
1125
  command: {
1126
1126
  id: JOIN_EDITOR_IN_GROUP,
1127
1127
  title: {
1128
- ...( localize2(3328, "Join in Group")),
1129
- mnemonicTitle: ( localize(3329, "Join in &&Group"))
1128
+ ...( localize2(3387, "Join in Group")),
1129
+ mnemonicTitle: ( localize(3388, "Join in &&Group"))
1130
1130
  }
1131
1131
  },
1132
1132
  when: SideBySideEditorActiveContext,
@@ -1137,8 +1137,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
1137
1137
  command: {
1138
1138
  id: MOVE_EDITOR_INTO_NEW_WINDOW_COMMAND_ID,
1139
1139
  title: {
1140
- ...( localize2(3330, "Move Editor into New Window")),
1141
- mnemonicTitle: ( localize(3331, "&&Move Editor into New Window"))
1140
+ ...( localize2(3389, "Move Editor into New Window")),
1141
+ mnemonicTitle: ( localize(3390, "&&Move Editor into New Window"))
1142
1142
  }
1143
1143
  },
1144
1144
  order: 1
@@ -1148,8 +1148,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
1148
1148
  command: {
1149
1149
  id: COPY_EDITOR_INTO_NEW_WINDOW_COMMAND_ID,
1150
1150
  title: {
1151
- ...( localize2(3332, "Copy Editor into New Window")),
1152
- mnemonicTitle: ( localize(3333, "&&Copy Editor into New Window"))
1151
+ ...( localize2(3391, "Copy Editor into New Window")),
1152
+ mnemonicTitle: ( localize(3392, "&&Copy Editor into New Window"))
1153
1153
  }
1154
1154
  },
1155
1155
  order: 2
@@ -1159,8 +1159,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
1159
1159
  command: {
1160
1160
  id: EditorLayoutSingleAction.ID,
1161
1161
  title: {
1162
- ...( localize2(3334, "Single")),
1163
- mnemonicTitle: ( localize(3335, "&&Single"))
1162
+ ...( localize2(3393, "Single")),
1163
+ mnemonicTitle: ( localize(3394, "&&Single"))
1164
1164
  }
1165
1165
  },
1166
1166
  order: 1
@@ -1170,8 +1170,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
1170
1170
  command: {
1171
1171
  id: EditorLayoutTwoColumnsAction.ID,
1172
1172
  title: {
1173
- ...( localize2(3336, "Two Columns")),
1174
- mnemonicTitle: ( localize(3337, "&&Two Columns"))
1173
+ ...( localize2(3395, "Two Columns")),
1174
+ mnemonicTitle: ( localize(3396, "&&Two Columns"))
1175
1175
  }
1176
1176
  },
1177
1177
  order: 3
@@ -1181,8 +1181,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
1181
1181
  command: {
1182
1182
  id: EditorLayoutThreeColumnsAction.ID,
1183
1183
  title: {
1184
- ...( localize2(3338, "Three Columns")),
1185
- mnemonicTitle: ( localize(3339, "T&&hree Columns"))
1184
+ ...( localize2(3397, "Three Columns")),
1185
+ mnemonicTitle: ( localize(3398, "T&&hree Columns"))
1186
1186
  }
1187
1187
  },
1188
1188
  order: 4
@@ -1192,8 +1192,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
1192
1192
  command: {
1193
1193
  id: EditorLayoutTwoRowsAction.ID,
1194
1194
  title: {
1195
- ...( localize2(3340, "Two Rows")),
1196
- mnemonicTitle: ( localize(3341, "T&&wo Rows"))
1195
+ ...( localize2(3399, "Two Rows")),
1196
+ mnemonicTitle: ( localize(3400, "T&&wo Rows"))
1197
1197
  }
1198
1198
  },
1199
1199
  order: 5
@@ -1203,8 +1203,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
1203
1203
  command: {
1204
1204
  id: EditorLayoutThreeRowsAction.ID,
1205
1205
  title: {
1206
- ...( localize2(3342, "Three Rows")),
1207
- mnemonicTitle: ( localize(3343, "Three &&Rows"))
1206
+ ...( localize2(3401, "Three Rows")),
1207
+ mnemonicTitle: ( localize(3402, "Three &&Rows"))
1208
1208
  }
1209
1209
  },
1210
1210
  order: 6
@@ -1214,8 +1214,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
1214
1214
  command: {
1215
1215
  id: EditorLayoutTwoByTwoGridAction.ID,
1216
1216
  title: {
1217
- ...( localize2(3344, "Grid (2x2)")),
1218
- mnemonicTitle: ( localize(3345, "&&Grid (2x2)"))
1217
+ ...( localize2(3403, "Grid (2x2)")),
1218
+ mnemonicTitle: ( localize(3404, "&&Grid (2x2)"))
1219
1219
  }
1220
1220
  },
1221
1221
  order: 7
@@ -1225,8 +1225,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
1225
1225
  command: {
1226
1226
  id: EditorLayoutTwoRowsRightAction.ID,
1227
1227
  title: {
1228
- ...( localize2(3346, "Two Rows Right")),
1229
- mnemonicTitle: ( localize(3347, "Two R&&ows Right"))
1228
+ ...( localize2(3405, "Two Rows Right")),
1229
+ mnemonicTitle: ( localize(3406, "Two R&&ows Right"))
1230
1230
  }
1231
1231
  },
1232
1232
  order: 8
@@ -1236,8 +1236,8 @@ MenuRegistry.appendMenuItem(MenuId.MenubarLayoutMenu, {
1236
1236
  command: {
1237
1237
  id: EditorLayoutTwoColumnsBottomAction.ID,
1238
1238
  title: {
1239
- ...( localize2(3348, "Two Columns Bottom")),
1240
- mnemonicTitle: ( localize(3349, "Two &&Columns Bottom"))
1239
+ ...( localize2(3407, "Two Columns Bottom")),
1240
+ mnemonicTitle: ( localize(3408, "Two &&Columns Bottom"))
1241
1241
  }
1242
1242
  },
1243
1243
  order: 9
@@ -1246,7 +1246,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarGoMenu, {
1246
1246
  group: "1_history_nav",
1247
1247
  command: {
1248
1248
  id: "workbench.action.navigateToLastEditLocation",
1249
- title: ( localize(3350, "&&Last Edit Location")),
1249
+ title: ( localize(3409, "&&Last Edit Location")),
1250
1250
  precondition: ( ContextKeyExpr.has("canNavigateToLastEditLocation"))
1251
1251
  },
1252
1252
  order: 3
@@ -1255,7 +1255,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchEditorMenu, {
1255
1255
  group: "1_sideBySide",
1256
1256
  command: {
1257
1257
  id: FOCUS_FIRST_SIDE_EDITOR,
1258
- title: ( localize(3351, "&&First Side in Editor"))
1258
+ title: ( localize(3410, "&&First Side in Editor"))
1259
1259
  },
1260
1260
  when: ( ContextKeyExpr.or(SideBySideEditorActiveContext, TextCompareEditorActiveContext)),
1261
1261
  order: 1
@@ -1264,7 +1264,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchEditorMenu, {
1264
1264
  group: "1_sideBySide",
1265
1265
  command: {
1266
1266
  id: FOCUS_SECOND_SIDE_EDITOR,
1267
- title: ( localize(3352, "&&Second Side in Editor"))
1267
+ title: ( localize(3411, "&&Second Side in Editor"))
1268
1268
  },
1269
1269
  when: ( ContextKeyExpr.or(SideBySideEditorActiveContext, TextCompareEditorActiveContext)),
1270
1270
  order: 2
@@ -1273,7 +1273,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchEditorMenu, {
1273
1273
  group: "2_any",
1274
1274
  command: {
1275
1275
  id: "workbench.action.nextEditor",
1276
- title: ( localize(3353, "&&Next Editor"))
1276
+ title: ( localize(3412, "&&Next Editor"))
1277
1277
  },
1278
1278
  order: 1
1279
1279
  });
@@ -1281,7 +1281,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchEditorMenu, {
1281
1281
  group: "2_any",
1282
1282
  command: {
1283
1283
  id: "workbench.action.previousEditor",
1284
- title: ( localize(3354, "&&Previous Editor"))
1284
+ title: ( localize(3413, "&&Previous Editor"))
1285
1285
  },
1286
1286
  order: 2
1287
1287
  });
@@ -1289,7 +1289,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchEditorMenu, {
1289
1289
  group: "3_any_used",
1290
1290
  command: {
1291
1291
  id: "workbench.action.openNextRecentlyUsedEditor",
1292
- title: ( localize(3355, "&&Next Used Editor"))
1292
+ title: ( localize(3414, "&&Next Used Editor"))
1293
1293
  },
1294
1294
  order: 1
1295
1295
  });
@@ -1297,7 +1297,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchEditorMenu, {
1297
1297
  group: "3_any_used",
1298
1298
  command: {
1299
1299
  id: "workbench.action.openPreviousRecentlyUsedEditor",
1300
- title: ( localize(3356, "&&Previous Used Editor"))
1300
+ title: ( localize(3415, "&&Previous Used Editor"))
1301
1301
  },
1302
1302
  order: 2
1303
1303
  });
@@ -1305,7 +1305,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchEditorMenu, {
1305
1305
  group: "4_group",
1306
1306
  command: {
1307
1307
  id: "workbench.action.nextEditorInGroup",
1308
- title: ( localize(3357, "&&Next Editor in Group"))
1308
+ title: ( localize(3416, "&&Next Editor in Group"))
1309
1309
  },
1310
1310
  order: 1
1311
1311
  });
@@ -1313,7 +1313,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchEditorMenu, {
1313
1313
  group: "4_group",
1314
1314
  command: {
1315
1315
  id: "workbench.action.previousEditorInGroup",
1316
- title: ( localize(3358, "&&Previous Editor in Group"))
1316
+ title: ( localize(3417, "&&Previous Editor in Group"))
1317
1317
  },
1318
1318
  order: 2
1319
1319
  });
@@ -1321,7 +1321,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchEditorMenu, {
1321
1321
  group: "5_group_used",
1322
1322
  command: {
1323
1323
  id: "workbench.action.openNextRecentlyUsedEditorInGroup",
1324
- title: ( localize(3359, "&&Next Used Editor in Group"))
1324
+ title: ( localize(3418, "&&Next Used Editor in Group"))
1325
1325
  },
1326
1326
  order: 1
1327
1327
  });
@@ -1329,13 +1329,13 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchEditorMenu, {
1329
1329
  group: "5_group_used",
1330
1330
  command: {
1331
1331
  id: "workbench.action.openPreviousRecentlyUsedEditorInGroup",
1332
- title: ( localize(3360, "&&Previous Used Editor in Group"))
1332
+ title: ( localize(3419, "&&Previous Used Editor in Group"))
1333
1333
  },
1334
1334
  order: 2
1335
1335
  });
1336
1336
  MenuRegistry.appendMenuItem(MenuId.MenubarGoMenu, {
1337
1337
  group: "2_editor_nav",
1338
- title: ( localize(3361, "Switch &&Editor")),
1338
+ title: ( localize(3420, "Switch &&Editor")),
1339
1339
  submenu: MenuId.MenubarSwitchEditorMenu,
1340
1340
  order: 1
1341
1341
  });
@@ -1343,7 +1343,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchGroupMenu, {
1343
1343
  group: "1_focus_index",
1344
1344
  command: {
1345
1345
  id: "workbench.action.focusFirstEditorGroup",
1346
- title: ( localize(3362, "Group &&1"))
1346
+ title: ( localize(3421, "Group &&1"))
1347
1347
  },
1348
1348
  order: 1
1349
1349
  });
@@ -1351,7 +1351,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchGroupMenu, {
1351
1351
  group: "1_focus_index",
1352
1352
  command: {
1353
1353
  id: "workbench.action.focusSecondEditorGroup",
1354
- title: ( localize(3363, "Group &&2"))
1354
+ title: ( localize(3422, "Group &&2"))
1355
1355
  },
1356
1356
  order: 2
1357
1357
  });
@@ -1359,7 +1359,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchGroupMenu, {
1359
1359
  group: "1_focus_index",
1360
1360
  command: {
1361
1361
  id: "workbench.action.focusThirdEditorGroup",
1362
- title: ( localize(3364, "Group &&3")),
1362
+ title: ( localize(3423, "Group &&3")),
1363
1363
  precondition: MultipleEditorGroupsContext
1364
1364
  },
1365
1365
  order: 3
@@ -1368,7 +1368,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchGroupMenu, {
1368
1368
  group: "1_focus_index",
1369
1369
  command: {
1370
1370
  id: "workbench.action.focusFourthEditorGroup",
1371
- title: ( localize(3365, "Group &&4")),
1371
+ title: ( localize(3424, "Group &&4")),
1372
1372
  precondition: MultipleEditorGroupsContext
1373
1373
  },
1374
1374
  order: 4
@@ -1377,7 +1377,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchGroupMenu, {
1377
1377
  group: "1_focus_index",
1378
1378
  command: {
1379
1379
  id: "workbench.action.focusFifthEditorGroup",
1380
- title: ( localize(3366, "Group &&5")),
1380
+ title: ( localize(3425, "Group &&5")),
1381
1381
  precondition: MultipleEditorGroupsContext
1382
1382
  },
1383
1383
  order: 5
@@ -1386,7 +1386,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchGroupMenu, {
1386
1386
  group: "2_next_prev",
1387
1387
  command: {
1388
1388
  id: "workbench.action.focusNextGroup",
1389
- title: ( localize(3367, "&&Next Group")),
1389
+ title: ( localize(3426, "&&Next Group")),
1390
1390
  precondition: MultipleEditorGroupsContext
1391
1391
  },
1392
1392
  order: 1
@@ -1395,7 +1395,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchGroupMenu, {
1395
1395
  group: "2_next_prev",
1396
1396
  command: {
1397
1397
  id: "workbench.action.focusPreviousGroup",
1398
- title: ( localize(3368, "&&Previous Group")),
1398
+ title: ( localize(3427, "&&Previous Group")),
1399
1399
  precondition: MultipleEditorGroupsContext
1400
1400
  },
1401
1401
  order: 2
@@ -1404,7 +1404,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchGroupMenu, {
1404
1404
  group: "3_directional",
1405
1405
  command: {
1406
1406
  id: "workbench.action.focusLeftGroup",
1407
- title: ( localize(3369, "Group &&Left")),
1407
+ title: ( localize(3428, "Group &&Left")),
1408
1408
  precondition: MultipleEditorGroupsContext
1409
1409
  },
1410
1410
  order: 1
@@ -1413,7 +1413,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchGroupMenu, {
1413
1413
  group: "3_directional",
1414
1414
  command: {
1415
1415
  id: "workbench.action.focusRightGroup",
1416
- title: ( localize(3370, "Group &&Right")),
1416
+ title: ( localize(3429, "Group &&Right")),
1417
1417
  precondition: MultipleEditorGroupsContext
1418
1418
  },
1419
1419
  order: 2
@@ -1422,7 +1422,7 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchGroupMenu, {
1422
1422
  group: "3_directional",
1423
1423
  command: {
1424
1424
  id: "workbench.action.focusAboveGroup",
1425
- title: ( localize(3371, "Group &&Above")),
1425
+ title: ( localize(3430, "Group &&Above")),
1426
1426
  precondition: MultipleEditorGroupsContext
1427
1427
  },
1428
1428
  order: 3
@@ -1431,14 +1431,14 @@ MenuRegistry.appendMenuItem(MenuId.MenubarSwitchGroupMenu, {
1431
1431
  group: "3_directional",
1432
1432
  command: {
1433
1433
  id: "workbench.action.focusBelowGroup",
1434
- title: ( localize(3372, "Group &&Below")),
1434
+ title: ( localize(3431, "Group &&Below")),
1435
1435
  precondition: MultipleEditorGroupsContext
1436
1436
  },
1437
1437
  order: 4
1438
1438
  });
1439
1439
  MenuRegistry.appendMenuItem(MenuId.MenubarGoMenu, {
1440
1440
  group: "2_editor_nav",
1441
- title: ( localize(3373, "Switch &&Group")),
1441
+ title: ( localize(3432, "Switch &&Group")),
1442
1442
  submenu: MenuId.MenubarSwitchGroupMenu,
1443
1443
  order: 2
1444
1444
  });