@codingame/monaco-vscode-view-common-service-override 24.2.0 → 25.0.0

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 (42) hide show
  1. package/package.json +3 -3
  2. package/vscode/src/vs/workbench/api/browser/viewsExtensionPoint.js +61 -77
  3. package/vscode/src/vs/workbench/browser/actions/helpActions.js +20 -20
  4. package/vscode/src/vs/workbench/browser/actions/listCommands.js +3 -3
  5. package/vscode/src/vs/workbench/browser/actions/navigationActions.js +6 -6
  6. package/vscode/src/vs/workbench/browser/parts/editor/editor.contribution.js +169 -167
  7. package/vscode/src/vs/workbench/browser/parts/editor/editorConfiguration.js +8 -8
  8. package/vscode/src/vs/workbench/contrib/callHierarchy/browser/callHierarchy.contribution.js +12 -12
  9. package/vscode/src/vs/workbench/contrib/callHierarchy/browser/callHierarchyPeek.js +5 -5
  10. package/vscode/src/vs/workbench/contrib/callHierarchy/browser/callHierarchyTree.js +3 -3
  11. package/vscode/src/vs/workbench/contrib/customEditor/browser/customEditorInputFactory.d.ts +2 -1
  12. package/vscode/src/vs/workbench/contrib/customEditor/browser/customEditorInputFactory.js +2 -4
  13. package/vscode/src/vs/workbench/contrib/customEditor/common/contributedCustomEditors.js +1 -1
  14. package/vscode/src/vs/workbench/contrib/customEditor/common/customEditor.js +1 -1
  15. package/vscode/src/vs/workbench/contrib/customEditor/common/extensionPoint.js +12 -12
  16. package/vscode/src/vs/workbench/contrib/languageStatus/browser/languageStatus.js +7 -7
  17. package/vscode/src/vs/workbench/contrib/limitIndicator/browser/limitIndicator.contribution.js +8 -8
  18. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/commands/commands.js +29 -29
  19. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/commands/devCommands.js +14 -14
  20. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/mergeEditor.contribution.js +3 -3
  21. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/mergeEditorAccessibilityHelp.js +5 -5
  22. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/view/colors.js +13 -13
  23. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/view/editors/baseCodeEditorView.js +3 -3
  24. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/view/editors/inputCodeEditorView.js +11 -11
  25. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/view/editors/resultCodeEditorView.js +5 -5
  26. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/view/mergeEditor.js +1 -1
  27. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/view/viewModel.js +1 -1
  28. package/vscode/src/vs/workbench/contrib/preferences/browser/keyboardLayoutPicker.js +12 -12
  29. package/vscode/src/vs/workbench/contrib/sash/browser/sash.contribution.js +2 -2
  30. package/vscode/src/vs/workbench/contrib/scrollLocking/browser/scrollLocking.js +7 -7
  31. package/vscode/src/vs/workbench/contrib/typeHierarchy/browser/typeHierarchy.contribution.js +10 -10
  32. package/vscode/src/vs/workbench/contrib/typeHierarchy/browser/typeHierarchyPeek.js +5 -5
  33. package/vscode/src/vs/workbench/contrib/typeHierarchy/browser/typeHierarchyTree.js +3 -3
  34. package/vscode/src/vs/workbench/contrib/webview/browser/webviewElement.js +1 -1
  35. package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewCommands.js +5 -5
  36. package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewEditorInputSerializer.d.ts +6 -4
  37. package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewEditorInputSerializer.js +12 -4
  38. package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewPanel.contribution.js +1 -1
  39. package/vscode/src/vs/workbench/services/editor/browser/editorResolverService.js +9 -9
  40. package/vscode/src/vs/workbench/services/history/browser/historyService.js +12 -9
  41. package/vscode/src/vs/workbench/services/progress/browser/progressService.js +8 -8
  42. package/vscode/src/vs/workbench/services/views/browser/viewDescriptorService.js +5 -5
@@ -61,7 +61,7 @@ class OpenMergeEditor extends Action2 {
61
61
  constructor() {
62
62
  super({
63
63
  id: '_open.mergeEditor',
64
- title: ( localize2(9043, 'Open Merge Editor')),
64
+ title: ( localize2(9068, 'Open Merge Editor')),
65
65
  });
66
66
  }
67
67
  run(accessor, ...args) {
@@ -132,7 +132,7 @@ class SetMixedLayout extends Action2 {
132
132
  constructor() {
133
133
  super({
134
134
  id: 'merge.mixedLayout',
135
- title: ( localize2(9044, "Mixed Layout")),
135
+ title: ( localize2(9069, "Mixed Layout")),
136
136
  toggled: ( ctxMergeEditorLayout.isEqualTo('mixed')),
137
137
  menu: [
138
138
  {
@@ -156,7 +156,7 @@ class SetColumnLayout extends Action2 {
156
156
  constructor() {
157
157
  super({
158
158
  id: 'merge.columnLayout',
159
- title: ( localize2(9045, 'Column Layout')),
159
+ title: ( localize2(9070, 'Column Layout')),
160
160
  toggled: ( ctxMergeEditorLayout.isEqualTo('columns')),
161
161
  menu: [{
162
162
  id: MenuId.EditorTitle,
@@ -178,7 +178,7 @@ class ShowNonConflictingChanges extends Action2 {
178
178
  constructor() {
179
179
  super({
180
180
  id: 'merge.showNonConflictingChanges',
181
- title: ( localize2(9046, "Show Non-Conflicting Changes")),
181
+ title: ( localize2(9071, "Show Non-Conflicting Changes")),
182
182
  toggled: ( ctxMergeEditorShowNonConflictingChanges.isEqualTo(true)),
183
183
  menu: [
184
184
  {
@@ -202,7 +202,7 @@ class ShowHideBase extends Action2 {
202
202
  constructor() {
203
203
  super({
204
204
  id: 'merge.showBase',
205
- title: ( localize2(9047, "Show Base")),
205
+ title: ( localize2(9072, "Show Base")),
206
206
  toggled: ( ctxMergeEditorShowBase.isEqualTo(true)),
207
207
  menu: [
208
208
  {
@@ -225,7 +225,7 @@ class ShowHideTopBase extends Action2 {
225
225
  constructor() {
226
226
  super({
227
227
  id: 'merge.showBaseTop',
228
- title: ( localize2(9048, "Show Base Top")),
228
+ title: ( localize2(9073, "Show Base Top")),
229
229
  toggled: ( ContextKeyExpr.and(ctxMergeEditorShowBase, ctxMergeEditorShowBaseAtTop)),
230
230
  menu: [
231
231
  {
@@ -248,7 +248,7 @@ class ShowHideCenterBase extends Action2 {
248
248
  constructor() {
249
249
  super({
250
250
  id: 'merge.showBaseCenter',
251
- title: ( localize2(9049, "Show Base Center")),
251
+ title: ( localize2(9074, "Show Base Center")),
252
252
  toggled: ( ContextKeyExpr.and(ctxMergeEditorShowBase, ( ctxMergeEditorShowBaseAtTop.negate()))),
253
253
  menu: [
254
254
  {
@@ -267,13 +267,13 @@ class ShowHideCenterBase extends Action2 {
267
267
  }
268
268
  }
269
269
  }
270
- const mergeEditorCategory = ( localize2(9050, "Merge Editor"));
270
+ const mergeEditorCategory = ( localize2(9075, "Merge Editor"));
271
271
  class OpenResultResource extends MergeEditorAction {
272
272
  constructor() {
273
273
  super({
274
274
  id: 'merge.openResult',
275
275
  icon: Codicon.goToFile,
276
- title: ( localize2(9051, "Open File")),
276
+ title: ( localize2(9076, "Open File")),
277
277
  category: mergeEditorCategory,
278
278
  menu: [{
279
279
  id: MenuId.EditorTitle,
@@ -294,7 +294,7 @@ class GoToNextUnhandledConflict extends MergeEditorAction {
294
294
  super({
295
295
  id: 'merge.goToNextUnhandledConflict',
296
296
  category: mergeEditorCategory,
297
- title: ( localize2(9052, "Go to Next Unhandled Conflict")),
297
+ title: ( localize2(9077, "Go to Next Unhandled Conflict")),
298
298
  icon: Codicon.arrowDown,
299
299
  menu: [
300
300
  {
@@ -318,7 +318,7 @@ class GoToPreviousUnhandledConflict extends MergeEditorAction {
318
318
  super({
319
319
  id: 'merge.goToPreviousUnhandledConflict',
320
320
  category: mergeEditorCategory,
321
- title: ( localize2(9053, "Go to Previous Unhandled Conflict")),
321
+ title: ( localize2(9078, "Go to Previous Unhandled Conflict")),
322
322
  icon: Codicon.arrowUp,
323
323
  menu: [
324
324
  {
@@ -342,7 +342,7 @@ class ToggleActiveConflictInput1 extends MergeEditorAction {
342
342
  super({
343
343
  id: 'merge.toggleActiveConflictInput1',
344
344
  category: mergeEditorCategory,
345
- title: ( localize2(9054, "Toggle Current Conflict from Left")),
345
+ title: ( localize2(9079, "Toggle Current Conflict from Left")),
346
346
  f1: true,
347
347
  precondition: ctxIsMergeEditor,
348
348
  });
@@ -356,7 +356,7 @@ class ToggleActiveConflictInput2 extends MergeEditorAction {
356
356
  super({
357
357
  id: 'merge.toggleActiveConflictInput2',
358
358
  category: mergeEditorCategory,
359
- title: ( localize2(9055, "Toggle Current Conflict from Right")),
359
+ title: ( localize2(9080, "Toggle Current Conflict from Right")),
360
360
  f1: true,
361
361
  precondition: ctxIsMergeEditor,
362
362
  });
@@ -370,8 +370,8 @@ class CompareInput1WithBaseCommand extends MergeEditorAction {
370
370
  super({
371
371
  id: 'mergeEditor.compareInput1WithBase',
372
372
  category: mergeEditorCategory,
373
- title: ( localize2(9056, "Compare Input 1 With Base")),
374
- shortTitle: ( localize(9057, 'Compare With Base')),
373
+ title: ( localize2(9081, "Compare Input 1 With Base")),
374
+ shortTitle: ( localize(9082, 'Compare With Base')),
375
375
  f1: true,
376
376
  precondition: ctxIsMergeEditor,
377
377
  menu: { id: MenuId.MergeInput1Toolbar, group: 'primary' },
@@ -388,8 +388,8 @@ class CompareInput2WithBaseCommand extends MergeEditorAction {
388
388
  super({
389
389
  id: 'mergeEditor.compareInput2WithBase',
390
390
  category: mergeEditorCategory,
391
- title: ( localize2(9058, "Compare Input 2 With Base")),
392
- shortTitle: ( localize(9057, 'Compare With Base')),
391
+ title: ( localize2(9083, "Compare Input 2 With Base")),
392
+ shortTitle: ( localize(9082, 'Compare With Base')),
393
393
  f1: true,
394
394
  precondition: ctxIsMergeEditor,
395
395
  menu: { id: MenuId.MergeInput2Toolbar, group: 'primary' },
@@ -425,7 +425,7 @@ class OpenBaseFile extends MergeEditorAction {
425
425
  super({
426
426
  id: 'merge.openBaseEditor',
427
427
  category: mergeEditorCategory,
428
- title: ( localize2(9059, "Open Base File")),
428
+ title: ( localize2(9084, "Open Base File")),
429
429
  f1: true,
430
430
  precondition: ctxIsMergeEditor,
431
431
  });
@@ -440,7 +440,7 @@ class AcceptAllInput1 extends MergeEditorAction {
440
440
  super({
441
441
  id: 'merge.acceptAllInput1',
442
442
  category: mergeEditorCategory,
443
- title: ( localize2(9060, "Accept All Incoming Changes from Left")),
443
+ title: ( localize2(9085, "Accept All Incoming Changes from Left")),
444
444
  f1: true,
445
445
  precondition: ctxIsMergeEditor,
446
446
  menu: { id: MenuId.MergeInput1Toolbar, group: 'primary' },
@@ -456,7 +456,7 @@ class AcceptAllInput2 extends MergeEditorAction {
456
456
  super({
457
457
  id: 'merge.acceptAllInput2',
458
458
  category: mergeEditorCategory,
459
- title: ( localize2(9061, "Accept All Current Changes from Right")),
459
+ title: ( localize2(9086, "Accept All Current Changes from Right")),
460
460
  f1: true,
461
461
  precondition: ctxIsMergeEditor,
462
462
  menu: { id: MenuId.MergeInput2Toolbar, group: 'primary' },
@@ -472,8 +472,8 @@ class ResetToBaseAndAutoMergeCommand extends MergeEditorAction {
472
472
  super({
473
473
  id: 'mergeEditor.resetResultToBaseAndAutoMerge',
474
474
  category: mergeEditorCategory,
475
- title: ( localize2(9062, "Reset Result")),
476
- shortTitle: ( localize(9063, 'Reset')),
475
+ title: ( localize2(9087, "Reset Result")),
476
+ shortTitle: ( localize(9088, 'Reset')),
477
477
  f1: true,
478
478
  precondition: ctxIsMergeEditor,
479
479
  menu: { id: MenuId.MergeInputResultToolbar, group: 'primary' },
@@ -489,7 +489,7 @@ class ResetCloseWithConflictsChoice extends Action2 {
489
489
  super({
490
490
  id: 'mergeEditor.resetCloseWithConflictsChoice',
491
491
  category: mergeEditorCategory,
492
- title: ( localize2(9064, "Reset Choice for \'Close with Conflicts\'")),
492
+ title: ( localize2(9089, "Reset Choice for \'Close with Conflicts\'")),
493
493
  f1: true,
494
494
  });
495
495
  }
@@ -502,7 +502,7 @@ class AcceptAllCombination extends MergeEditorAction2 {
502
502
  super({
503
503
  id: 'mergeEditor.acceptAllCombination',
504
504
  category: mergeEditorCategory,
505
- title: ( localize2(9065, "Accept All Combination")),
505
+ title: ( localize2(9090, "Accept All Combination")),
506
506
  f1: true,
507
507
  });
508
508
  }
@@ -529,7 +529,7 @@ class AcceptMerge extends MergeEditorAction2 {
529
529
  super({
530
530
  id: 'mergeEditor.acceptMerge',
531
531
  category: mergeEditorCategory,
532
- title: ( localize2(9066, "Complete Merge")),
532
+ title: ( localize2(9091, "Complete Merge")),
533
533
  f1: true,
534
534
  precondition: ctxIsMergeEditor,
535
535
  keybinding: [
@@ -547,12 +547,12 @@ class AcceptMerge extends MergeEditorAction2 {
547
547
  if (viewModel.model.unhandledConflictsCount.get() > 0) {
548
548
  const { confirmed } = await dialogService.confirm({
549
549
  message: ( localize(
550
- 9067,
550
+ 9092,
551
551
  "Do you want to complete the merge of {0}?",
552
552
  basename(inputModel.resultUri)
553
553
  )),
554
- detail: ( localize(9068, "The file contains unhandled conflicts.")),
555
- primaryButton: ( localize(9069, "&&Complete with Conflicts"))
554
+ detail: ( localize(9093, "The file contains unhandled conflicts.")),
555
+ primaryButton: ( localize(9094, "&&Complete with Conflicts"))
556
556
  });
557
557
  if (!confirmed) {
558
558
  return {
@@ -572,7 +572,7 @@ class ToggleBetweenInputs extends MergeEditorAction2 {
572
572
  super({
573
573
  id: 'mergeEditor.toggleBetweenInputs',
574
574
  category: mergeEditorCategory,
575
- title: ( localize2(9070, "Toggle Between Merge Editor Inputs")),
575
+ title: ( localize2(9095, "Toggle Between Merge Editor Inputs")),
576
576
  f1: true,
577
577
  precondition: ctxIsMergeEditor,
578
578
  keybinding: [
@@ -14,13 +14,13 @@ import { MergeEditor } from '../view/mergeEditor.js';
14
14
  import { ctxIsMergeEditor } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/mergeEditor/common/mergeEditor';
15
15
  import { IEditorService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService.service';
16
16
 
17
- const MERGE_EDITOR_CATEGORY = ( localize2(9071, 'Merge Editor (Dev)'));
17
+ const MERGE_EDITOR_CATEGORY = ( localize2(9096, 'Merge Editor (Dev)'));
18
18
  class MergeEditorCopyContentsToJSON extends Action2 {
19
19
  constructor() {
20
20
  super({
21
21
  id: 'merge.dev.copyContentsJson',
22
22
  category: MERGE_EDITOR_CATEGORY,
23
- title: ( localize2(9072, "Copy Merge Editor State as JSON")),
23
+ title: ( localize2(9097, "Copy Merge Editor State as JSON")),
24
24
  icon: Codicon.layoutCentered,
25
25
  f1: true,
26
26
  precondition: ctxIsMergeEditor,
@@ -32,8 +32,8 @@ class MergeEditorCopyContentsToJSON extends Action2 {
32
32
  const notificationService = accessor.get(INotificationService);
33
33
  if (!(activeEditorPane instanceof MergeEditor)) {
34
34
  notificationService.info({
35
- name: ( localize(9073, 'Merge Editor')),
36
- message: ( localize(9074, "No active merge editor"))
35
+ name: ( localize(9098, 'Merge Editor')),
36
+ message: ( localize(9099, "No active merge editor"))
37
37
  });
38
38
  return;
39
39
  }
@@ -52,8 +52,8 @@ class MergeEditorCopyContentsToJSON extends Action2 {
52
52
  const jsonStr = JSON.stringify(contents, undefined, 4);
53
53
  clipboardService.writeText(jsonStr);
54
54
  notificationService.info({
55
- name: ( localize(9073, 'Merge Editor')),
56
- message: ( localize(9075, "Successfully copied merge editor state")),
55
+ name: ( localize(9098, 'Merge Editor')),
56
+ message: ( localize(9100, "Successfully copied merge editor state")),
57
57
  });
58
58
  }
59
59
  }
@@ -62,7 +62,7 @@ class MergeEditorSaveContentsToFolder extends Action2 {
62
62
  super({
63
63
  id: 'merge.dev.saveContentsToFolder',
64
64
  category: MERGE_EDITOR_CATEGORY,
65
- title: ( localize2(9076, "Save Merge Editor State to Folder")),
65
+ title: ( localize2(9101, "Save Merge Editor State to Folder")),
66
66
  icon: Codicon.layoutCentered,
67
67
  f1: true,
68
68
  precondition: ctxIsMergeEditor,
@@ -76,8 +76,8 @@ class MergeEditorSaveContentsToFolder extends Action2 {
76
76
  const languageService = accessor.get(ILanguageService);
77
77
  if (!(activeEditorPane instanceof MergeEditor)) {
78
78
  notificationService.info({
79
- name: ( localize(9073, 'Merge Editor')),
80
- message: ( localize(9074, "No active merge editor"))
79
+ name: ( localize(9098, 'Merge Editor')),
80
+ message: ( localize(9099, "No active merge editor"))
81
81
  });
82
82
  return;
83
83
  }
@@ -89,7 +89,7 @@ class MergeEditorSaveContentsToFolder extends Action2 {
89
89
  canSelectFiles: false,
90
90
  canSelectFolders: true,
91
91
  canSelectMany: false,
92
- title: ( localize(9077, 'Select folder to save to'))
92
+ title: ( localize(9102, 'Select folder to save to'))
93
93
  });
94
94
  if (!result) {
95
95
  return;
@@ -107,8 +107,8 @@ class MergeEditorSaveContentsToFolder extends Action2 {
107
107
  write('initialResult', model.getInitialResultValue()),
108
108
  ]);
109
109
  notificationService.info({
110
- name: ( localize(9073, 'Merge Editor')),
111
- message: ( localize(9078, "Successfully saved merge editor state to folder")),
110
+ name: ( localize(9098, 'Merge Editor')),
111
+ message: ( localize(9103, "Successfully saved merge editor state to folder")),
112
112
  });
113
113
  }
114
114
  }
@@ -117,7 +117,7 @@ class MergeEditorLoadContentsFromFolder extends Action2 {
117
117
  super({
118
118
  id: 'merge.dev.loadContentsFromFolder',
119
119
  category: MERGE_EDITOR_CATEGORY,
120
- title: ( localize2(9079, "Load Merge Editor State from Folder")),
120
+ title: ( localize2(9104, "Load Merge Editor State from Folder")),
121
121
  icon: Codicon.layoutCentered,
122
122
  f1: true
123
123
  });
@@ -136,7 +136,7 @@ class MergeEditorLoadContentsFromFolder extends Action2 {
136
136
  canSelectFiles: false,
137
137
  canSelectFolders: true,
138
138
  canSelectMany: false,
139
- title: ( localize(9077, 'Select folder to save to'))
139
+ title: ( localize(9102, 'Select folder to save to'))
140
140
  });
141
141
  if (!result) {
142
142
  return;
@@ -16,7 +16,7 @@ import { MergeEditorSerializer } from './mergeEditorSerializer.js';
16
16
  import { AccessibleViewRegistry } from '@codingame/monaco-vscode-api/vscode/vs/platform/accessibility/browser/accessibleViewRegistry';
17
17
  import { MergeEditorAccessibilityHelpProvider } from './mergeEditorAccessibilityHelp.js';
18
18
 
19
- ( Registry.as(EditorExtensions.EditorPane)).registerEditorPane(EditorPaneDescriptor.create(MergeEditor, MergeEditor.ID, ( localize(9080, "Merge Editor"))), [
19
+ ( Registry.as(EditorExtensions.EditorPane)).registerEditorPane(EditorPaneDescriptor.create(MergeEditor, MergeEditor.ID, ( localize(9105, "Merge Editor"))), [
20
20
  ( new SyncDescriptor(MergeEditorInput))
21
21
  ]);
22
22
  ( Registry.as(EditorExtensions.EditorFactory)).registerEditorSerializer(MergeEditorInput.ID, MergeEditorSerializer);
@@ -27,8 +27,8 @@ import { MergeEditorAccessibilityHelpProvider } from './mergeEditorAccessibility
27
27
  enum: ['legacy', 'advanced'],
28
28
  default: 'advanced',
29
29
  markdownEnumDescriptions: [
30
- ( localize(9081, "Uses the legacy diffing algorithm.")),
31
- ( localize(9082, "Uses the advanced diffing algorithm.")),
30
+ ( localize(9106, "Uses the legacy diffing algorithm.")),
31
+ ( localize(9107, "Uses the advanced diffing algorithm.")),
32
32
  ]
33
33
  },
34
34
  'mergeEditor.showDeletionMarkers': {
@@ -19,22 +19,22 @@ class MergeEditorAccessibilityHelpProvider {
19
19
  return;
20
20
  }
21
21
  const content = [
22
- ( localize(9083, "You are in a merge editor.")),
22
+ ( localize(9108, "You are in a merge editor.")),
23
23
  ( localize(
24
- 9084,
24
+ 9109,
25
25
  "Navigate between merge conflicts using the commands Go to Next Unhandled Conflict{0} and Go to Previous Unhandled Conflict{1}.",
26
26
  '<keybinding:merge.goToNextUnhandledConflict>',
27
27
  '<keybinding:merge.goToPreviousUnhandledConflict>'
28
28
  )),
29
29
  ( localize(
30
- 9085,
30
+ 9110,
31
31
  "Run the command Merge Editor: Accept All Incoming Changes from the Left{0} and Merge Editor: Accept All Current Changes from the Right{1}",
32
32
  '<keybinding:merge.acceptAllInput1>',
33
33
  '<keybinding:merge.acceptAllInput2>'
34
34
  )),
35
- ( localize(9086, "Complete the Merge{0}.", '<keybinding:mergeEditor.acceptMerge>')),
35
+ ( localize(9111, "Complete the Merge{0}.", '<keybinding:mergeEditor.acceptMerge>')),
36
36
  ( localize(
37
- 9087,
37
+ 9112,
38
38
  "Toggle between merge editor inputs, incoming and current changes {0}.",
39
39
  '<keybinding:mergeEditor.toggleBetweenInputs>'
40
40
  )),
@@ -12,19 +12,19 @@ import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/misc
12
12
  import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/quickpickColors';
13
13
  import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/searchColors';
14
14
 
15
- registerColor('mergeEditor.change.background', '#9bb95533', ( localize(9123, 'The background color for changes.')));
16
- registerColor('mergeEditor.change.word.background', { dark: '#9ccc2c33', light: '#9ccc2c66', hcDark: '#9ccc2c33', hcLight: '#9ccc2c66', }, ( localize(9124, 'The background color for word changes.')));
17
- registerColor('mergeEditor.changeBase.background', { dark: '#4B1818FF', light: '#FFCCCCFF', hcDark: '#4B1818FF', hcLight: '#FFCCCCFF', }, ( localize(9125, 'The background color for changes in base.')));
18
- registerColor('mergeEditor.changeBase.word.background', { dark: '#6F1313FF', light: '#FFA3A3FF', hcDark: '#6F1313FF', hcLight: '#FFA3A3FF', }, ( localize(9126, 'The background color for word changes in base.')));
19
- registerColor('mergeEditor.conflict.unhandledUnfocused.border', { dark: '#ffa6007a', light: '#ffa600FF', hcDark: '#ffa6007a', hcLight: '#ffa6007a', }, ( localize(9127, 'The border color of unhandled unfocused conflicts.')));
20
- registerColor('mergeEditor.conflict.unhandledFocused.border', '#ffa600', ( localize(9128, 'The border color of unhandled focused conflicts.')));
21
- registerColor('mergeEditor.conflict.handledUnfocused.border', '#86868649', ( localize(9129, 'The border color of handled unfocused conflicts.')));
22
- registerColor('mergeEditor.conflict.handledFocused.border', '#c1c1c1cc', ( localize(9130, 'The border color of handled focused conflicts.')));
23
- const handledConflictMinimapOverViewRulerColor = registerColor('mergeEditor.conflict.handled.minimapOverViewRuler', '#adaca8ee', ( localize(9131, 'The foreground color for changes in input 1.')));
24
- const unhandledConflictMinimapOverViewRulerColor = registerColor('mergeEditor.conflict.unhandled.minimapOverViewRuler', '#fcba03FF', ( localize(9132, 'The foreground color for changes in input 1.')));
25
- registerColor('mergeEditor.conflictingLines.background', '#ffea0047', ( localize(9133, 'The background of the "Conflicting Lines" text.')));
15
+ registerColor('mergeEditor.change.background', '#9bb95533', ( localize(9148, 'The background color for changes.')));
16
+ registerColor('mergeEditor.change.word.background', { dark: '#9ccc2c33', light: '#9ccc2c66', hcDark: '#9ccc2c33', hcLight: '#9ccc2c66', }, ( localize(9149, 'The background color for word changes.')));
17
+ registerColor('mergeEditor.changeBase.background', { dark: '#4B1818FF', light: '#FFCCCCFF', hcDark: '#4B1818FF', hcLight: '#FFCCCCFF', }, ( localize(9150, 'The background color for changes in base.')));
18
+ registerColor('mergeEditor.changeBase.word.background', { dark: '#6F1313FF', light: '#FFA3A3FF', hcDark: '#6F1313FF', hcLight: '#FFA3A3FF', }, ( localize(9151, 'The background color for word changes in base.')));
19
+ registerColor('mergeEditor.conflict.unhandledUnfocused.border', { dark: '#ffa6007a', light: '#ffa600FF', hcDark: '#ffa6007a', hcLight: '#ffa6007a', }, ( localize(9152, 'The border color of unhandled unfocused conflicts.')));
20
+ registerColor('mergeEditor.conflict.unhandledFocused.border', '#ffa600', ( localize(9153, 'The border color of unhandled focused conflicts.')));
21
+ registerColor('mergeEditor.conflict.handledUnfocused.border', '#86868649', ( localize(9154, 'The border color of handled unfocused conflicts.')));
22
+ registerColor('mergeEditor.conflict.handledFocused.border', '#c1c1c1cc', ( localize(9155, 'The border color of handled focused conflicts.')));
23
+ const handledConflictMinimapOverViewRulerColor = registerColor('mergeEditor.conflict.handled.minimapOverViewRuler', '#adaca8ee', ( localize(9156, 'The foreground color for changes in input 1.')));
24
+ const unhandledConflictMinimapOverViewRulerColor = registerColor('mergeEditor.conflict.unhandled.minimapOverViewRuler', '#fcba03FF', ( localize(9157, 'The foreground color for changes in input 1.')));
25
+ registerColor('mergeEditor.conflictingLines.background', '#ffea0047', ( localize(9158, 'The background of the "Conflicting Lines" text.')));
26
26
  const contentTransparency = 0.4;
27
- registerColor('mergeEditor.conflict.input1.background', ( transparent(mergeCurrentHeaderBackground, contentTransparency)), ( localize(9134, 'The background color of decorations in input 1.')));
28
- registerColor('mergeEditor.conflict.input2.background', ( transparent(mergeIncomingHeaderBackground, contentTransparency)), ( localize(9135, 'The background color of decorations in input 2.')));
27
+ registerColor('mergeEditor.conflict.input1.background', ( transparent(mergeCurrentHeaderBackground, contentTransparency)), ( localize(9159, 'The background color of decorations in input 1.')));
28
+ registerColor('mergeEditor.conflict.input2.background', ( transparent(mergeIncomingHeaderBackground, contentTransparency)), ( localize(9160, 'The background color of decorations in input 2.')));
29
29
 
30
30
  export { handledConflictMinimapOverViewRulerColor, unhandledConflictMinimapOverViewRulerColor };
@@ -114,16 +114,16 @@ let BaseCodeEditorView = class BaseCodeEditorView extends CodeEditorView {
114
114
  return;
115
115
  }
116
116
  this.editor.setModel(vm.model.base);
117
- reset(this.htmlElements.title, ...renderLabelWithIcons(( localize(9154, 'Base'))));
117
+ reset(this.htmlElements.title, ...renderLabelWithIcons(( localize(9179, 'Base'))));
118
118
  const baseShowDiffAgainst = vm.baseShowDiffAgainst.read(reader);
119
119
  let node = undefined;
120
120
  if (baseShowDiffAgainst) {
121
121
  const label = ( localize(
122
- 9155,
122
+ 9180,
123
123
  'Comparing with {0}',
124
124
  baseShowDiffAgainst === 1 ? vm.model.input1.title : vm.model.input2.title
125
125
  ));
126
- const tooltip = ( localize(9156, 'Differences are highlighted with a background color.'));
126
+ const tooltip = ( localize(9181, 'Differences are highlighted with a background color.'));
127
127
  node = h('span', { title: tooltip }, [label]).root;
128
128
  }
129
129
  reset(this.htmlElements.description, ...(node ? [node] : []));
@@ -155,8 +155,8 @@ let InputCodeEditorView = class InputCodeEditorView extends CodeEditorView {
155
155
  }
156
156
  this.editor.setModel(this.inputNumber === 1 ? vm.model.input1.textModel : vm.model.input2.textModel);
157
157
  const title = this.inputNumber === 1
158
- ? vm.model.input1.title || ( localize(9157, 'Input 1'))
159
- : vm.model.input2.title || ( localize(9158, 'Input 2'));
158
+ ? vm.model.input1.title || ( localize(9182, 'Input 1'))
159
+ : vm.model.input2.title || ( localize(9183, 'Input 2'));
160
160
  const description = this.inputNumber === 1
161
161
  ? vm.model.input1.description
162
162
  : vm.model.input2.description;
@@ -238,19 +238,19 @@ class ModifiedBaseRangeGutterItemModel {
238
238
  const both = state.includesInput1 && state.includesInput2;
239
239
  return [
240
240
  this.baseRange.input1Diffs.length > 0
241
- ? action('mergeEditor.acceptInput1', ( localize(9159, 'Accept {0}', this.model.input1.title)), state.toggle(1), state.includesInput1)
241
+ ? action('mergeEditor.acceptInput1', ( localize(9184, 'Accept {0}', this.model.input1.title)), state.toggle(1), state.includesInput1)
242
242
  : undefined,
243
243
  this.baseRange.input2Diffs.length > 0
244
- ? action('mergeEditor.acceptInput2', ( localize(9159, 'Accept {0}', this.model.input2.title)), state.toggle(2), state.includesInput2)
244
+ ? action('mergeEditor.acceptInput2', ( localize(9184, 'Accept {0}', this.model.input2.title)), state.toggle(2), state.includesInput2)
245
245
  : undefined,
246
246
  this.baseRange.isConflicting
247
- ? setFields(action('mergeEditor.acceptBoth', ( localize(9160, 'Accept Both')), state.withInputValue(1, !both).withInputValue(2, !both), both), { enabled: this.baseRange.canBeCombined })
247
+ ? setFields(action('mergeEditor.acceptBoth', ( localize(9185, 'Accept Both')), state.withInputValue(1, !both).withInputValue(2, !both), both), { enabled: this.baseRange.canBeCombined })
248
248
  : undefined,
249
249
  ( new Separator()),
250
250
  this.baseRange.isConflicting
251
- ? setFields(action('mergeEditor.swap', ( localize(9161, 'Swap')), state.swap(), false), { enabled: !state.kind && (!both || this.baseRange.isOrderRelevant) })
251
+ ? setFields(action('mergeEditor.swap', ( localize(9186, 'Swap')), state.swap(), false), { enabled: !state.kind && (!both || this.baseRange.isOrderRelevant) })
252
252
  : undefined,
253
- setFields(( new Action('mergeEditor.markAsHandled', ( localize(9162, 'Mark as Handled')), undefined, true, () => {
253
+ setFields(( new Action('mergeEditor.markAsHandled', ( localize(9187, 'Mark as Handled')), undefined, true, () => {
254
254
  transaction((tx) => {
255
255
  this.model.setHandled(this.baseRange, !handled, tx);
256
256
  });
@@ -293,10 +293,10 @@ class MergeConflictGutterItemView extends Disposable {
293
293
  const item = this.item.read(reader);
294
294
  const value = item.toggleState.read(reader);
295
295
  const iconMap = {
296
- [InputState.excluded]: { icon: undefined, checked: false, title: ( localize(9163, "Accept")) },
297
- [InputState.unrecognized]: { icon: Codicon.circleFilled, checked: false, title: ( localize(9164, "Accept (result is dirty)")) },
298
- [InputState.first]: { icon: Codicon.check, checked: true, title: ( localize(9165, "Undo accept")) },
299
- [InputState.second]: { icon: Codicon.checkAll, checked: true, title: ( localize(9166, "Undo accept (currently second)")) },
296
+ [InputState.excluded]: { icon: undefined, checked: false, title: ( localize(9188, "Accept")) },
297
+ [InputState.unrecognized]: { icon: Codicon.circleFilled, checked: false, title: ( localize(9189, "Accept (result is dirty)")) },
298
+ [InputState.first]: { icon: Codicon.check, checked: true, title: ( localize(9190, "Undo accept")) },
299
+ [InputState.second]: { icon: Codicon.checkAll, checked: true, title: ( localize(9191, "Undo accept (currently second)")) },
300
300
  };
301
301
  const state = iconMap[value];
302
302
  checkBox.setIcon(state.icon);
@@ -131,7 +131,7 @@ let ResultCodeEditorView = class ResultCodeEditorView extends CodeEditorView {
131
131
  return;
132
132
  }
133
133
  this.editor.setModel(vm.model.resultTextModel);
134
- reset(this.htmlElements.title, ...renderLabelWithIcons(( localize(9167, 'Result'))));
134
+ reset(this.htmlElements.title, ...renderLabelWithIcons(( localize(9192, 'Result'))));
135
135
  reset(this.htmlElements.description, ...renderLabelWithIcons(this._labelService.getUriLabel(vm.model.resultTextModel.uri, { relative: true })));
136
136
  }));
137
137
  const remainingConflictsActionBar = this._register(( new ActionBar(this.htmlElements.detail)));
@@ -146,8 +146,8 @@ let ResultCodeEditorView = class ResultCodeEditorView extends CodeEditorView {
146
146
  }
147
147
  const count = model.unhandledConflictsCount.read(reader);
148
148
  const text = count === 1
149
- ? ( localize(9168, '{0} Conflict Remaining', count))
150
- : ( localize(9169, '{0} Conflicts Remaining ', count));
149
+ ? ( localize(9193, '{0} Conflict Remaining', count))
150
+ : ( localize(9194, '{0} Conflicts Remaining ', count));
151
151
  remainingConflictsActionBar.clear();
152
152
  remainingConflictsActionBar.push({
153
153
  class: undefined,
@@ -159,8 +159,8 @@ let ResultCodeEditorView = class ResultCodeEditorView extends CodeEditorView {
159
159
  vm.goToNextModifiedBaseRange(m => !model.isHandled(m).read(undefined));
160
160
  },
161
161
  tooltip: count > 0
162
- ? ( localize(9170, 'Go to next conflict'))
163
- : ( localize(9171, 'All conflicts handled, the merge can be completed now.')),
162
+ ? ( localize(9195, 'Go to next conflict'))
163
+ : ( localize(9196, 'All conflicts handled, the merge can be completed now.')),
164
164
  });
165
165
  }));
166
166
  this._register(applyObservableDecorations(this.editor, this.decorations));
@@ -118,7 +118,7 @@ let MergeEditor = class MergeEditor extends AbstractTextEditor {
118
118
  if (this.input) {
119
119
  return this.input.getName();
120
120
  }
121
- return localize(9172, "Text Merge Editor");
121
+ return localize(9197, "Text Merge Editor");
122
122
  }
123
123
  createEditorControl(parent, initialOptions) {
124
124
  this.rootHtmlElement = parent;
@@ -222,7 +222,7 @@ let MergeEditorViewModel = class MergeEditorViewModel extends Disposable {
222
222
  toggleActiveConflict(inputNumber) {
223
223
  const activeModifiedBaseRange = this.activeModifiedBaseRange.get();
224
224
  if (!activeModifiedBaseRange) {
225
- this.notificationService.error(( localize(9173, "There is currently no conflict focused that can be toggled.")));
225
+ this.notificationService.error(( localize(9198, "There is currently no conflict focused that can be toggled.")));
226
226
  return;
227
227
  }
228
228
  transaction(tx => {
@@ -24,11 +24,11 @@ let KeyboardLayoutPickerContribution = class KeyboardLayoutPickerContribution ex
24
24
  this.keyboardLayoutService = keyboardLayoutService;
25
25
  this.statusbarService = statusbarService;
26
26
  this.pickerElement = this._register(( new MutableDisposable()));
27
- const name = ( localize(9844, "Keyboard Layout"));
27
+ const name = ( localize(9874, "Keyboard Layout"));
28
28
  const layout = this.keyboardLayoutService.getCurrentKeyboardLayout();
29
29
  if (layout) {
30
30
  const layoutInfo = parseKeyboardLayoutDescription(layout);
31
- const text = ( localize(9845, "Layout: {0}", layoutInfo.label));
31
+ const text = ( localize(9875, "Layout: {0}", layoutInfo.label));
32
32
  this.pickerElement.value = this.statusbarService.addEntry({
33
33
  name,
34
34
  text,
@@ -40,7 +40,7 @@ let KeyboardLayoutPickerContribution = class KeyboardLayoutPickerContribution ex
40
40
  const layout = this.keyboardLayoutService.getCurrentKeyboardLayout();
41
41
  const layoutInfo = parseKeyboardLayoutDescription(layout);
42
42
  if (this.pickerElement.value) {
43
- const text = ( localize(9845, "Layout: {0}", layoutInfo.label));
43
+ const text = ( localize(9875, "Layout: {0}", layoutInfo.label));
44
44
  this.pickerElement.value.update({
45
45
  name,
46
46
  text,
@@ -49,7 +49,7 @@ let KeyboardLayoutPickerContribution = class KeyboardLayoutPickerContribution ex
49
49
  });
50
50
  }
51
51
  else {
52
- const text = ( localize(9845, "Layout: {0}", layoutInfo.label));
52
+ const text = ( localize(9875, "Layout: {0}", layoutInfo.label));
53
53
  this.pickerElement.value = this.statusbarService.addEntry({
54
54
  name,
55
55
  text,
@@ -67,11 +67,11 @@ KeyboardLayoutPickerContribution = ( __decorate([
67
67
  registerWorkbenchContribution2(KeyboardLayoutPickerContribution.ID, KeyboardLayoutPickerContribution, WorkbenchPhase.BlockStartup);
68
68
  const DEFAULT_CONTENT = [
69
69
  `// ${( localize(
70
- 9846,
70
+ 9876,
71
71
  'Defines the keyboard layout used in VS Code in the browser environment.'
72
72
  ))}`,
73
73
  `// ${( localize(
74
- 9847,
74
+ 9877,
75
75
  'Open VS Code and run "Developer: Inspect Key Mappings (JSON)" from Command Palette.'
76
76
  ))}`,
77
77
  ``,
@@ -82,7 +82,7 @@ registerAction2(class extends Action2 {
82
82
  constructor() {
83
83
  super({
84
84
  id: KEYBOARD_LAYOUT_OPEN_PICKER,
85
- title: ( localize2(9848, "Change Keyboard Layout")),
85
+ title: ( localize2(9878, "Change Keyboard Layout")),
86
86
  f1: true
87
87
  });
88
88
  }
@@ -112,17 +112,17 @@ registerAction2(class extends Action2 {
112
112
  });
113
113
  if (picks.length > 0) {
114
114
  const platform = isMacintosh ? 'Mac' : isWindows ? 'Win' : 'Linux';
115
- picks.unshift({ type: 'separator', label: ( localize(9849, "Keyboard Layouts ({0})", platform)) });
115
+ picks.unshift({ type: 'separator', label: ( localize(9879, "Keyboard Layouts ({0})", platform)) });
116
116
  }
117
- const configureKeyboardLayout = { label: ( localize(9850, "Configure Keyboard Layout")) };
117
+ const configureKeyboardLayout = { label: ( localize(9880, "Configure Keyboard Layout")) };
118
118
  picks.unshift(configureKeyboardLayout);
119
119
  const autoDetectMode = {
120
- label: ( localize(9851, "Auto Detect")),
120
+ label: ( localize(9881, "Auto Detect")),
121
121
  description: isAutoDetect ? `Current: ${parseKeyboardLayoutDescription(currentLayout).label}` : undefined,
122
122
  picked: isAutoDetect ? true : undefined
123
123
  };
124
124
  picks.unshift(autoDetectMode);
125
- const pick = await quickInputService.pick(picks, { placeHolder: ( localize(9852, "Select Keyboard Layout")), matchOnDescription: true });
125
+ const pick = await quickInputService.pick(picks, { placeHolder: ( localize(9882, "Select Keyboard Layout")), matchOnDescription: true });
126
126
  if (!pick) {
127
127
  return;
128
128
  }
@@ -144,7 +144,7 @@ registerAction2(class extends Action2 {
144
144
  options: { pinned: true }
145
145
  });
146
146
  }, (error) => {
147
- throw ( new Error(( localize(9853, "Unable to create '{0}' ({1}).", (file.toString()), error))));
147
+ throw ( new Error(( localize(9883, "Unable to create '{0}' ({1}).", (file.toString()), error))));
148
148
  });
149
149
  return Promise.resolve();
150
150
  }
@@ -18,7 +18,7 @@ registerWorkbenchContribution2(SashSettingsController.ID, SashSettingsController
18
18
  minimum: 1,
19
19
  maximum: 20,
20
20
  description: ( localize(
21
- 10404,
21
+ 10434,
22
22
  "Controls the feedback area size in pixels of the dragging area in between views/editors. Set it to a larger value if you feel it's hard to resize views using the mouse."
23
23
  ))
24
24
  },
@@ -28,7 +28,7 @@ registerWorkbenchContribution2(SashSettingsController.ID, SashSettingsController
28
28
  minimum: 0,
29
29
  maximum: 2000,
30
30
  description: ( localize(
31
- 10405,
31
+ 10435,
32
32
  "Controls the hover feedback delay in milliseconds of the dragging area in between views/editors."
33
33
  ))
34
34
  },