@codingame/monaco-vscode-view-common-service-override 9.0.0 → 9.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/package.json +3 -3
  2. package/vscode/src/vs/workbench/api/browser/viewsExtensionPoint.js +58 -58
  3. package/vscode/src/vs/workbench/browser/actions/listCommands.js +3 -3
  4. package/vscode/src/vs/workbench/browser/actions/navigationActions.js +6 -6
  5. package/vscode/src/vs/workbench/browser/parts/activitybar/activitybarPart.js +21 -21
  6. package/vscode/src/vs/workbench/browser/parts/auxiliarybar/auxiliaryBarPart.js +3 -3
  7. package/vscode/src/vs/workbench/browser/parts/compositeBar.js +1 -1
  8. package/vscode/src/vs/workbench/browser/parts/compositePart.js +3 -3
  9. package/vscode/src/vs/workbench/browser/parts/editor/editor.contribution.js +159 -159
  10. package/vscode/src/vs/workbench/browser/parts/editor/editorConfiguration.js +8 -8
  11. package/vscode/src/vs/workbench/browser/parts/editor/editorDropTarget.js +1 -1
  12. package/vscode/src/vs/workbench/browser/parts/editor/editorParts.js +1 -1
  13. package/vscode/src/vs/workbench/browser/parts/paneCompositeBar.js +2 -2
  14. package/vscode/src/vs/workbench/browser/parts/paneCompositePart.js +3 -3
  15. package/vscode/src/vs/workbench/browser/parts/panel/panelPart.js +3 -3
  16. package/vscode/src/vs/workbench/browser/parts/sidebar/sidebarActions.js +1 -1
  17. package/vscode/src/vs/workbench/browser/parts/sidebar/sidebarPart.js +1 -1
  18. package/vscode/src/vs/workbench/contrib/callHierarchy/browser/callHierarchy.contribution.js +12 -12
  19. package/vscode/src/vs/workbench/contrib/callHierarchy/browser/callHierarchyPeek.js +5 -5
  20. package/vscode/src/vs/workbench/contrib/customEditor/common/contributedCustomEditors.js +1 -1
  21. package/vscode/src/vs/workbench/contrib/customEditor/common/customEditor.js +1 -1
  22. package/vscode/src/vs/workbench/contrib/languageStatus/browser/languageStatus.contribution.js +8 -8
  23. package/vscode/src/vs/workbench/contrib/limitIndicator/browser/limitIndicator.contribution.js +8 -8
  24. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/commands/commands.js +27 -27
  25. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/commands/devCommands.js +14 -14
  26. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/mergeEditor.contribution.js +3 -3
  27. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/view/editors/inputCodeEditorView.js +11 -11
  28. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/view/editors/resultCodeEditorView.js +5 -5
  29. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/view/mergeEditor.js +1 -1
  30. package/vscode/src/vs/workbench/contrib/preferences/browser/keyboardLayoutPicker.js +12 -12
  31. package/vscode/src/vs/workbench/contrib/sash/browser/sash.contribution.js +2 -2
  32. package/vscode/src/vs/workbench/contrib/typeHierarchy/browser/typeHierarchy.contribution.js +10 -10
  33. package/vscode/src/vs/workbench/contrib/typeHierarchy/browser/typeHierarchyPeek.js +5 -5
  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/webviewPanel.contribution.js +1 -1
  37. package/vscode/src/vs/workbench/services/editor/browser/editorResolverService.js +9 -9
  38. package/vscode/src/vs/workbench/services/history/browser/historyService.js +9 -9
  39. package/vscode/src/vs/workbench/services/progress/browser/progressService.js +7 -7
  40. package/vscode/src/vs/workbench/services/views/browser/viewDescriptorService.js +2 -2
  41. package/vscode/src/vs/workbench/services/views/common/viewContainerModel.js +1 -1
@@ -24,22 +24,22 @@ let DynamicEditorConfigurations = class DynamicEditorConfigurations extends Disp
24
24
  static { this.AUTO_LOCK_EXTRA_EDITORS = [
25
25
  {
26
26
  id: 'workbench.input.interactive',
27
- label: ( localize(9757, 'Interactive Window')),
27
+ label: ( localize(9755, 'Interactive Window')),
28
28
  priority: RegisteredEditorPriority.builtin
29
29
  },
30
30
  {
31
31
  id: 'mainThreadWebview-markdown.preview',
32
- label: ( localize(9758, "Markdown Preview")),
32
+ label: ( localize(9756, "Markdown Preview")),
33
33
  priority: RegisteredEditorPriority.builtin
34
34
  },
35
35
  {
36
36
  id: 'mainThreadWebview-simpleBrowser.view',
37
- label: ( localize(9759, "Simple Browser")),
37
+ label: ( localize(9757, "Simple Browser")),
38
38
  priority: RegisteredEditorPriority.builtin
39
39
  },
40
40
  {
41
41
  id: 'mainThreadWebview-browserPreview',
42
- label: ( localize(9760, "Live Preview")),
42
+ label: ( localize(9758, "Live Preview")),
43
43
  priority: RegisteredEditorPriority.builtin
44
44
  }
45
45
  ]; }
@@ -84,7 +84,7 @@ let DynamicEditorConfigurations = class DynamicEditorConfigurations extends Disp
84
84
  'workbench.editor.autoLockGroups': {
85
85
  type: 'object',
86
86
  description: ( localize(
87
- 9761,
87
+ 9759,
88
88
  "If an editor matching one of the listed types is opened as the first in an editor group and more than one group is open, the group is automatically locked. Locked groups will only be used for opening editors when explicitly chosen by a user gesture (for example drag and drop), but not by default. Consequently, the active editor in a locked group is less likely to be replaced accidentally with a different editor."
89
89
  )),
90
90
  properties: autoLockGroupConfiguration,
@@ -102,7 +102,7 @@ let DynamicEditorConfigurations = class DynamicEditorConfigurations extends Disp
102
102
  default: '',
103
103
  enum: [...binaryEditorCandidates, ''],
104
104
  description: ( localize(
105
- 9762,
105
+ 9760,
106
106
  "The default editor for files detected as binary. If undefined, the user will be presented with a picker."
107
107
  )),
108
108
  }
@@ -115,7 +115,7 @@ let DynamicEditorConfigurations = class DynamicEditorConfigurations extends Disp
115
115
  'workbench.editorAssociations': {
116
116
  type: 'object',
117
117
  markdownDescription: ( localize(
118
- 9763,
118
+ 9761,
119
119
  "Configure [glob patterns](https://aka.ms/vscode-glob-patterns) to editors (for example `\"*.hex\": \"hexEditor.hexedit\"`). These have precedence over the default behavior."
120
120
  )),
121
121
  patternProperties: {
@@ -137,7 +137,7 @@ let DynamicEditorConfigurations = class DynamicEditorConfigurations extends Disp
137
137
  minimum: 1,
138
138
  scope: ConfigurationScope.RESOURCE,
139
139
  markdownDescription: ( localize(
140
- 9764,
140
+ 9762,
141
141
  "Controls the minimum size of a file in MB before asking for confirmation when opening in the editor. Note that this setting may not apply to all editor types and environments."
142
142
  )),
143
143
  }
@@ -79,7 +79,7 @@ let DropOverlay = class DropOverlay extends Themable {
79
79
  this.overlay.classList.add('editor-group-overlay-indicator');
80
80
  container.appendChild(this.overlay);
81
81
  if (this.enableDropIntoEditor) {
82
- this.dropIntoPromptElement = renderFormattedText(( localize(10881, "Hold __{0}__ to drop into editor", isMacintosh ? '⇧' : 'Shift')), {});
82
+ this.dropIntoPromptElement = renderFormattedText(( localize(10893, "Hold __{0}__ to drop into editor", isMacintosh ? '⇧' : 'Shift')), {});
83
83
  this.dropIntoPromptElement.classList.add('editor-group-overlay-drop-into-prompt');
84
84
  this.overlay.appendChild(this.dropIntoPromptElement);
85
85
  }
@@ -140,7 +140,7 @@ let EditorParts = class EditorParts extends MultiWindowParts {
140
140
  }
141
141
  }
142
142
  getGroupsLabel(index) {
143
- return ( localize(3051, "Window {0}", index + 1));
143
+ return ( localize(3533, "Window {0}", index + 1));
144
144
  }
145
145
  getPart(groupOrElement) {
146
146
  if (this._parts.size > 1) {
@@ -95,7 +95,7 @@ let PaneCompositeBar = class PaneCompositeBar extends Disposable {
95
95
  const viewContainer = this.viewDescriptorService.getViewContainerById(compositeId);
96
96
  const defaultLocation = this.viewDescriptorService.getDefaultViewContainerLocation(viewContainer);
97
97
  if (defaultLocation !== this.viewDescriptorService.getViewContainerLocation(viewContainer)) {
98
- actions.push(toAction({ id: 'resetLocationAction', label: ( localize(9299, "Reset Location")), run: () => this.viewDescriptorService.moveViewContainerToLocation(viewContainer, defaultLocation, undefined, 'resetLocationAction') }));
98
+ actions.push(toAction({ id: 'resetLocationAction', label: ( localize(9335, "Reset Location")), run: () => this.viewDescriptorService.moveViewContainerToLocation(viewContainer, defaultLocation, undefined, 'resetLocationAction') }));
99
99
  }
100
100
  else {
101
101
  const viewContainerModel = this.viewDescriptorService.getViewContainerModel(viewContainer);
@@ -103,7 +103,7 @@ let PaneCompositeBar = class PaneCompositeBar extends Disposable {
103
103
  const viewToReset = viewContainerModel.allViewDescriptors[0];
104
104
  const defaultContainer = this.viewDescriptorService.getDefaultContainerById(viewToReset.id);
105
105
  if (defaultContainer !== viewContainer) {
106
- actions.push(toAction({ id: 'resetLocationAction', label: ( localize(9299, "Reset Location")), run: () => this.viewDescriptorService.moveViewsToContainer([viewToReset], defaultContainer, undefined, 'resetLocationAction') }));
106
+ actions.push(toAction({ id: 'resetLocationAction', label: ( localize(9335, "Reset Location")), run: () => this.viewDescriptorService.moveViewsToContainer([viewToReset], defaultContainer, undefined, 'resetLocationAction') }));
107
107
  }
108
108
  }
109
109
  }
@@ -142,7 +142,7 @@ let AbstractPaneCompositePart = class AbstractPaneCompositePart extends Composit
142
142
  this.emptyPaneMessageElement.classList.add('empty-pane-message-area');
143
143
  const messageElement = document.createElement('div');
144
144
  messageElement.classList.add('empty-pane-message');
145
- messageElement.innerText = ( localize(9296, "Drag a view here to display."));
145
+ messageElement.innerText = ( localize(9332, "Drag a view here to display."));
146
146
  this.emptyPaneMessageElement.appendChild(messageElement);
147
147
  parent.appendChild(this.emptyPaneMessageElement);
148
148
  this._register(CompositeDragAndDropObserver.INSTANCE.registerTarget(this.emptyPaneMessageElement, {
@@ -192,7 +192,7 @@ let AbstractPaneCompositePart = class AbstractPaneCompositePart extends Composit
192
192
  orientation: ActionsOrientation.HORIZONTAL,
193
193
  getKeyBinding: action => this.keybindingService.lookupKeybinding(action.id),
194
194
  anchorAlignmentProvider: () => this.getTitleAreaDropDownAnchorAlignment(),
195
- toggleMenuTitle: ( localize(9297, "More Actions...")),
195
+ toggleMenuTitle: ( localize(9333, "More Actions...")),
196
196
  hoverDelegate: this.toolbarHoverDelegate,
197
197
  hiddenItemStrategy: HiddenItemStrategy.NoHide
198
198
  }));
@@ -450,7 +450,7 @@ let AbstractPaneCompositePart = class AbstractPaneCompositePart extends Composit
450
450
  const menu = this.menuService.getMenuActions(ViewsSubMenu, scopedContextKeyService, { shouldForwardArgs: true, renderShortTitle: true });
451
451
  createAndFillInActionBarActions(menu, { primary: viewsActions, secondary: [] }, () => true);
452
452
  disposables.dispose();
453
- return viewsActions.length > 1 && ( (viewsActions.some(a => a.enabled))) ? ( (new SubmenuAction('views', ( localize(9298, "Views")), viewsActions))) : undefined;
453
+ return viewsActions.length > 1 && ( (viewsActions.some(a => a.enabled))) ? ( (new SubmenuAction('views', ( localize(9334, "Views")), viewsActions))) : undefined;
454
454
  }
455
455
  return undefined;
456
456
  }
@@ -114,9 +114,9 @@ let PanelPart = class PanelPart extends AbstractPaneCompositePart {
114
114
  createAndFillInContextMenuActions(panelAlignMenu, { primary: [], secondary: alignActions });
115
115
  actions.push(...[
116
116
  ( (new Separator())),
117
- ( (new SubmenuAction('workbench.action.panel.position', ( localize(3263, "Panel Position")), positionActions))),
118
- ( (new SubmenuAction('workbench.action.panel.align', ( localize(3264, "Align Panel")), alignActions))),
119
- toAction({ id: TogglePanelAction.ID, label: ( localize(3265, "Hide Panel")), run: () => this.commandService.executeCommand(TogglePanelAction.ID) })
117
+ ( (new SubmenuAction('workbench.action.panel.position', ( localize(3745, "Panel Position")), positionActions))),
118
+ ( (new SubmenuAction('workbench.action.panel.align', ( localize(3746, "Align Panel")), alignActions))),
119
+ toAction({ id: TogglePanelAction.ID, label: ( localize(3747, "Hide Panel")), run: () => this.commandService.executeCommand(TogglePanelAction.ID) })
120
120
  ]);
121
121
  }
122
122
  layout(width, height, top, left) {
@@ -13,7 +13,7 @@ class FocusSideBarAction extends Action2 {
13
13
  constructor() {
14
14
  super({
15
15
  id: 'workbench.action.focusSideBar',
16
- title: ( localize2(9295, 'Focus into Primary Side Bar')),
16
+ title: ( localize2(9331, 'Focus into Primary Side Bar')),
17
17
  category: Categories.View,
18
18
  f1: true,
19
19
  keybinding: {
@@ -217,7 +217,7 @@ let SidebarPart = class SidebarPart extends AbstractPaneCompositePart {
217
217
  constructor() {
218
218
  super({
219
219
  id: ToggleActivityBarVisibilityActionId,
220
- title: ( localize2(3243, "Toggle Activity Bar Visibility")),
220
+ title: ( localize2(3725, "Toggle Activity Bar Visibility")),
221
221
  });
222
222
  }
223
223
  run() {
@@ -23,12 +23,12 @@ import { registerIcon } from 'vscode/vscode/vs/platform/theme/common/iconRegistr
23
23
  import { isCancellationError } from 'vscode/vscode/vs/base/common/errors';
24
24
 
25
25
  var CallHierarchyController_1;
26
- const _ctxHasCallHierarchyProvider = ( (new RawContextKey('editorHasCallHierarchyProvider', false, ( localize(3945, 'Whether a call hierarchy provider is available')))));
27
- const _ctxCallHierarchyVisible = ( (new RawContextKey('callHierarchyVisible', false, ( localize(3946, 'Whether call hierarchy peek is currently showing')))));
26
+ const _ctxHasCallHierarchyProvider = ( (new RawContextKey('editorHasCallHierarchyProvider', false, ( localize(4117, 'Whether a call hierarchy provider is available')))));
27
+ const _ctxCallHierarchyVisible = ( (new RawContextKey('callHierarchyVisible', false, ( localize(4118, 'Whether call hierarchy peek is currently showing')))));
28
28
  const _ctxCallHierarchyDirection = ( (new RawContextKey(
29
29
  'callHierarchyDirection',
30
30
  undefined,
31
- { type: 'string', description: ( localize(3947, 'Whether call hierarchy shows incoming or outgoing calls')) }
31
+ { type: 'string', description: ( localize(4119, 'Whether call hierarchy shows incoming or outgoing calls')) }
32
32
  )));
33
33
  function sanitizedDirection(candidate) {
34
34
  return candidate === CallHierarchyDirection.CallsFrom || candidate === CallHierarchyDirection.CallsTo
@@ -116,14 +116,14 @@ let CallHierarchyController = class CallHierarchyController {
116
116
  this._widget.showModel(model);
117
117
  }
118
118
  else {
119
- this._widget.showMessage(( localize(3948, "No results")));
119
+ this._widget.showMessage(( localize(4120, "No results")));
120
120
  }
121
121
  }).catch(err => {
122
122
  if (isCancellationError(err)) {
123
123
  this.endCallHierarchy();
124
124
  return;
125
125
  }
126
- this._widget.showMessage(( localize(3949, "Failed to show call hierarchy")));
126
+ this._widget.showMessage(( localize(4121, "Failed to show call hierarchy")));
127
127
  });
128
128
  }
129
129
  showOutgoingCalls() {
@@ -151,7 +151,7 @@ registerAction2(class PeekCallHierarchyAction extends EditorAction2 {
151
151
  constructor() {
152
152
  super({
153
153
  id: 'editor.showCallHierarchy',
154
- title: ( localize2(3950, 'Peek Call Hierarchy')),
154
+ title: ( localize2(4122, 'Peek Call Hierarchy')),
155
155
  menu: {
156
156
  id: MenuId.EditorContextPeek,
157
157
  group: 'navigation',
@@ -179,8 +179,8 @@ registerAction2(class extends EditorAction2 {
179
179
  constructor() {
180
180
  super({
181
181
  id: 'editor.showIncomingCalls',
182
- title: ( localize2(3951, 'Show Incoming Calls')),
183
- icon: registerIcon('callhierarchy-incoming', Codicon.callIncoming, ( localize(3952, 'Icon for incoming calls in the call hierarchy view.'))),
182
+ title: ( localize2(4123, 'Show Incoming Calls')),
183
+ icon: registerIcon('callhierarchy-incoming', Codicon.callIncoming, ( localize(4124, 'Icon for incoming calls in the call hierarchy view.'))),
184
184
  precondition: ( (ContextKeyExpr.and(
185
185
  _ctxCallHierarchyVisible,
186
186
  (_ctxCallHierarchyDirection.isEqualTo(CallHierarchyDirection.CallsFrom))
@@ -204,8 +204,8 @@ registerAction2(class extends EditorAction2 {
204
204
  constructor() {
205
205
  super({
206
206
  id: 'editor.showOutgoingCalls',
207
- title: ( localize2(3953, 'Show Outgoing Calls')),
208
- icon: registerIcon('callhierarchy-outgoing', Codicon.callOutgoing, ( localize(3954, 'Icon for outgoing calls in the call hierarchy view.'))),
207
+ title: ( localize2(4125, 'Show Outgoing Calls')),
208
+ icon: registerIcon('callhierarchy-outgoing', Codicon.callOutgoing, ( localize(4126, 'Icon for outgoing calls in the call hierarchy view.'))),
209
209
  precondition: ( (ContextKeyExpr.and(
210
210
  _ctxCallHierarchyVisible,
211
211
  (_ctxCallHierarchyDirection.isEqualTo(CallHierarchyDirection.CallsTo))
@@ -229,7 +229,7 @@ registerAction2(class extends EditorAction2 {
229
229
  constructor() {
230
230
  super({
231
231
  id: 'editor.refocusCallHierarchy',
232
- title: ( localize2(3955, 'Refocus Call Hierarchy')),
232
+ title: ( localize2(4127, 'Refocus Call Hierarchy')),
233
233
  precondition: _ctxCallHierarchyVisible,
234
234
  keybinding: {
235
235
  weight: KeybindingWeight.WorkbenchContrib,
@@ -245,7 +245,7 @@ registerAction2(class extends EditorAction2 {
245
245
  constructor() {
246
246
  super({
247
247
  id: 'editor.closeCallHierarchy',
248
- title: ( localize(3956, 'Close')),
248
+ title: ( localize(4128, 'Close')),
249
249
  icon: Codicon.close,
250
250
  precondition: _ctxCallHierarchyVisible,
251
251
  keybinding: {
@@ -267,13 +267,13 @@ let CallHierarchyTreePeekWidget = class CallHierarchyTreePeekWidget extends Peek
267
267
  }
268
268
  this._previewDisposable.add(value);
269
269
  const title = this._direction === CallHierarchyDirection.CallsFrom
270
- ? ( localize(9547, "Calls from '{0}'", element.model.root.name))
271
- : ( localize(9548, "Callers of '{0}'", element.model.root.name));
270
+ ? ( localize(9545, "Calls from '{0}'", element.model.root.name))
271
+ : ( localize(9546, "Callers of '{0}'", element.model.root.name));
272
272
  this.setTitle(title);
273
273
  }
274
274
  showLoading() {
275
275
  this._parent.dataset['state'] = State.Loading;
276
- this.setTitle(( localize(9549, "Loading...")));
276
+ this.setTitle(( localize(9547, "Loading...")));
277
277
  this._show();
278
278
  }
279
279
  showMessage(message) {
@@ -292,8 +292,8 @@ let CallHierarchyTreePeekWidget = class CallHierarchyTreePeekWidget extends Peek
292
292
  await this._tree.expand(root.element);
293
293
  if (root.children.length === 0) {
294
294
  this.showMessage(this._direction === CallHierarchyDirection.CallsFrom
295
- ? ( localize(9550, "No calls from '{0}'", model.root.name))
296
- : ( localize(9551, "No callers of '{0}'", model.root.name)));
295
+ ? ( localize(9548, "No calls from '{0}'", model.root.name))
296
+ : ( localize(9549, "No callers of '{0}'", model.root.name)));
297
297
  }
298
298
  else {
299
299
  this._parent.dataset['state'] = State.Data;
@@ -31,7 +31,7 @@ class ContributedCustomEditors extends Disposable {
31
31
  this.add(( (new CustomEditorInfo({
32
32
  id: webviewEditorContribution.viewType,
33
33
  displayName: webviewEditorContribution.displayName,
34
- providerDisplayName: extension.description.isBuiltin ? ( localize(9535, "Built-in")) : extension.description.displayName || extension.description.identifier.value,
34
+ providerDisplayName: extension.description.isBuiltin ? ( localize(9533, "Built-in")) : extension.description.displayName || extension.description.identifier.value,
35
35
  selector: webviewEditorContribution.selector || [],
36
36
  priority: getPriorityFromContribution(webviewEditorContribution, extension.description),
37
37
  }))));
@@ -5,7 +5,7 @@ import { globMatchesResource, RegisteredEditorPriority, priorityToRank } from 'v
5
5
 
6
6
  const CONTEXT_ACTIVE_CUSTOM_EDITOR_ID = ( (new RawContextKey('activeCustomEditorId', '', {
7
7
  type: 'string',
8
- description: ( localize(9534, "The viewType of the currently active custom editor.")),
8
+ description: ( localize(9532, "The viewType of the currently active custom editor.")),
9
9
  })));
10
10
  const CONTEXT_FOCUSED_CUSTOM_EDITOR_IS_EDITABLE = ( (new RawContextKey('focusedCustomEditorIsEditable', false)));
11
11
  var CustomEditorPriority;
@@ -182,8 +182,8 @@ let LanguageStatus = class LanguageStatus {
182
182
  isOneBusy = isOneBusy || (!isPinned && status.busy);
183
183
  }
184
184
  const props = {
185
- name: ( localize(4149, "Editor Language Status")),
186
- ariaLabel: ( localize(4150, "Editor Language Status: {0}", ariaLabels.join(', next: '))),
185
+ name: ( localize(4321, "Editor Language Status")),
186
+ ariaLabel: ( localize(4322, "Editor Language Status: {0}", ariaLabels.join(', next: '))),
187
187
  tooltip: element,
188
188
  command: ShowTooltipCommand,
189
189
  text: isOneBusy ? `${text}\u00A0\u00A0$(sync~spin)` : text,
@@ -283,7 +283,7 @@ let LanguageStatus = class LanguageStatus {
283
283
  store.add(actionBar);
284
284
  let action;
285
285
  if (!isPinned) {
286
- action = ( (new Action('pin', ( localize(4151, "Add to Status Bar")), ThemeIcon.asClassName(Codicon.pin), true, () => {
286
+ action = ( (new Action('pin', ( localize(4323, "Add to Status Bar")), ThemeIcon.asClassName(Codicon.pin), true, () => {
287
287
  this._dedicated.add(status.id);
288
288
  this._statusBarService.updateEntryVisibility(status.id, true);
289
289
  this._update();
@@ -291,7 +291,7 @@ let LanguageStatus = class LanguageStatus {
291
291
  })));
292
292
  }
293
293
  else {
294
- action = ( (new Action('unpin', ( localize(4152, "Remove from Status Bar")), ThemeIcon.asClassName(Codicon.pinned), true, () => {
294
+ action = ( (new Action('unpin', ( localize(4324, "Remove from Status Bar")), ThemeIcon.asClassName(Codicon.pinned), true, () => {
295
295
  this._dedicated.delete(status.id);
296
296
  this._statusBarService.updateEntryVisibility(status.id, false);
297
297
  this._update();
@@ -333,10 +333,10 @@ let LanguageStatus = class LanguageStatus {
333
333
  }
334
334
  const textValue = typeof status.label === 'string' ? status.label : status.label.value;
335
335
  if (status.detail) {
336
- return { label: ( localize(4153, '{0}, {1}', textValue, status.detail)) };
336
+ return { label: ( localize(4325, '{0}, {1}', textValue, status.detail)) };
337
337
  }
338
338
  else {
339
- return { label: ( localize(4154, '{0}', textValue)) };
339
+ return { label: ( localize(4326, '{0}', textValue)) };
340
340
  }
341
341
  }
342
342
  static _asStatusbarEntry(item) {
@@ -349,7 +349,7 @@ let LanguageStatus = class LanguageStatus {
349
349
  }
350
350
  const textValue = typeof item.label === 'string' ? item.label : item.label.shortValue;
351
351
  return {
352
- name: ( localize(4155, '{0} (Language Status)', item.name)),
352
+ name: ( localize(4327, '{0} (Language Status)', item.name)),
353
353
  text: item.busy ? `${textValue}\u00A0\u00A0$(sync~spin)` : textValue,
354
354
  ariaLabel: LanguageStatus_1._accessibilityInformation(item).label,
355
355
  role: item.accessibilityInfo?.role,
@@ -372,7 +372,7 @@ registerAction2(class extends Action2 {
372
372
  constructor() {
373
373
  super({
374
374
  id: 'editor.inlayHints.Reset',
375
- title: ( localize2(4156, "Reset Language Status Interaction Counter")),
375
+ title: ( localize2(4328, "Reset Language Status Interaction Counter")),
376
376
  category: Categories.View,
377
377
  f1: true
378
378
  });
@@ -12,7 +12,7 @@ import { FoldingController } from 'vscode/vscode/vs/editor/contrib/folding/brows
12
12
  import { ColorDetector } from 'vscode/vscode/vs/editor/contrib/colorPicker/browser/colorDetector';
13
13
 
14
14
  const openSettingsCommand = 'workbench.action.openSettings';
15
- const configureSettingsLabel = ( localize(4163, "Configure"));
15
+ const configureSettingsLabel = ( localize(4335, "Configure"));
16
16
  let LimitIndicatorContribution = class LimitIndicatorContribution extends Disposable {
17
17
  constructor(editorService, languageStatusService) {
18
18
  super();
@@ -42,9 +42,9 @@ LimitIndicatorContribution = ( (__decorate([
42
42
  class ColorDecorationAccessor {
43
43
  constructor() {
44
44
  this.id = 'decoratorsLimitInfo';
45
- this.name = ( localize(4164, 'Color Decorator Status'));
46
- this.label = ( localize(4165, 'Color Decorators'));
47
- this.source = ( localize(4166, 'Color Decorators'));
45
+ this.name = ( localize(4336, 'Color Decorator Status'));
46
+ this.label = ( localize(4337, 'Color Decorators'));
47
+ this.source = ( localize(4338, 'Color Decorators'));
48
48
  this.settingsId = 'editor.colorDecoratorsLimit';
49
49
  }
50
50
  getLimitReporter(editor) {
@@ -54,9 +54,9 @@ class ColorDecorationAccessor {
54
54
  class FoldingRangeAccessor {
55
55
  constructor() {
56
56
  this.id = 'foldingLimitInfo';
57
- this.name = ( localize(4167, 'Folding Status'));
58
- this.label = ( localize(4168, 'Folding Ranges'));
59
- this.source = ( localize(4169, 'Folding'));
57
+ this.name = ( localize(4339, 'Folding Status'));
58
+ this.label = ( localize(4340, 'Folding Ranges'));
59
+ this.source = ( localize(4341, 'Folding'));
60
60
  this.settingsId = 'editor.foldingMaximumRegions';
61
61
  }
62
62
  getLimitReporter(editor) {
@@ -98,7 +98,7 @@ class LanguageStatusEntry {
98
98
  name: this.accessor.name,
99
99
  severity: Severity$1.Warning,
100
100
  label: this.accessor.label,
101
- detail: ( localize(4170, 'only {0} shown for performance reasons', info.limited)),
101
+ detail: ( localize(4342, 'only {0} shown for performance reasons', info.limited)),
102
102
  command: { id: openSettingsCommand, arguments: [this.accessor.settingsId], title: configureSettingsLabel },
103
103
  accessibilityInfo: undefined,
104
104
  source: this.accessor.source,
@@ -55,7 +55,7 @@ class OpenMergeEditor extends Action2 {
55
55
  constructor() {
56
56
  super({
57
57
  id: '_open.mergeEditor',
58
- title: ( localize2(9770, 'Open Merge Editor')),
58
+ title: ( localize2(9768, 'Open Merge Editor')),
59
59
  });
60
60
  }
61
61
  run(accessor, ...args) {
@@ -134,7 +134,7 @@ class SetMixedLayout extends Action2 {
134
134
  constructor() {
135
135
  super({
136
136
  id: 'merge.mixedLayout',
137
- title: ( localize2(9771, "Mixed Layout")),
137
+ title: ( localize2(9769, "Mixed Layout")),
138
138
  toggled: ( (ctxMergeEditorLayout.isEqualTo('mixed'))),
139
139
  menu: [
140
140
  {
@@ -158,7 +158,7 @@ class SetColumnLayout extends Action2 {
158
158
  constructor() {
159
159
  super({
160
160
  id: 'merge.columnLayout',
161
- title: ( localize2(9772, 'Column Layout')),
161
+ title: ( localize2(9770, 'Column Layout')),
162
162
  toggled: ( (ctxMergeEditorLayout.isEqualTo('columns'))),
163
163
  menu: [{
164
164
  id: MenuId.EditorTitle,
@@ -180,7 +180,7 @@ class ShowNonConflictingChanges extends Action2 {
180
180
  constructor() {
181
181
  super({
182
182
  id: 'merge.showNonConflictingChanges',
183
- title: ( localize2(9773, "Show Non-Conflicting Changes")),
183
+ title: ( localize2(9771, "Show Non-Conflicting Changes")),
184
184
  toggled: ( (ctxMergeEditorShowNonConflictingChanges.isEqualTo(true))),
185
185
  menu: [
186
186
  {
@@ -204,7 +204,7 @@ class ShowHideBase extends Action2 {
204
204
  constructor() {
205
205
  super({
206
206
  id: 'merge.showBase',
207
- title: ( localize2(9774, "Show Base")),
207
+ title: ( localize2(9772, "Show Base")),
208
208
  toggled: ( (ctxMergeEditorShowBase.isEqualTo(true))),
209
209
  menu: [
210
210
  {
@@ -230,7 +230,7 @@ class ShowHideTopBase extends Action2 {
230
230
  constructor() {
231
231
  super({
232
232
  id: 'merge.showBaseTop',
233
- title: ( localize2(9775, "Show Base Top")),
233
+ title: ( localize2(9773, "Show Base Top")),
234
234
  toggled: ( (ContextKeyExpr.and(ctxMergeEditorShowBase, ctxMergeEditorShowBaseAtTop))),
235
235
  menu: [
236
236
  {
@@ -253,7 +253,7 @@ class ShowHideCenterBase extends Action2 {
253
253
  constructor() {
254
254
  super({
255
255
  id: 'merge.showBaseCenter',
256
- title: ( localize2(9776, "Show Base Center")),
256
+ title: ( localize2(9774, "Show Base Center")),
257
257
  toggled: ( (ContextKeyExpr.and(
258
258
  ctxMergeEditorShowBase,
259
259
  (ctxMergeEditorShowBaseAtTop.negate())
@@ -275,13 +275,13 @@ class ShowHideCenterBase extends Action2 {
275
275
  }
276
276
  }
277
277
  }
278
- const mergeEditorCategory = ( localize2(9777, "Merge Editor"));
278
+ const mergeEditorCategory = ( localize2(9775, "Merge Editor"));
279
279
  class OpenResultResource extends MergeEditorAction {
280
280
  constructor() {
281
281
  super({
282
282
  id: 'merge.openResult',
283
283
  icon: Codicon.goToFile,
284
- title: ( localize2(9778, "Open File")),
284
+ title: ( localize2(9776, "Open File")),
285
285
  category: mergeEditorCategory,
286
286
  menu: [{
287
287
  id: MenuId.EditorTitle,
@@ -302,7 +302,7 @@ class GoToNextUnhandledConflict extends MergeEditorAction {
302
302
  super({
303
303
  id: 'merge.goToNextUnhandledConflict',
304
304
  category: mergeEditorCategory,
305
- title: ( localize2(9779, "Go to Next Unhandled Conflict")),
305
+ title: ( localize2(9777, "Go to Next Unhandled Conflict")),
306
306
  icon: Codicon.arrowDown,
307
307
  menu: [
308
308
  {
@@ -326,7 +326,7 @@ class GoToPreviousUnhandledConflict extends MergeEditorAction {
326
326
  super({
327
327
  id: 'merge.goToPreviousUnhandledConflict',
328
328
  category: mergeEditorCategory,
329
- title: ( localize2(9780, "Go to Previous Unhandled Conflict")),
329
+ title: ( localize2(9778, "Go to Previous Unhandled Conflict")),
330
330
  icon: Codicon.arrowUp,
331
331
  menu: [
332
332
  {
@@ -350,7 +350,7 @@ class ToggleActiveConflictInput1 extends MergeEditorAction {
350
350
  super({
351
351
  id: 'merge.toggleActiveConflictInput1',
352
352
  category: mergeEditorCategory,
353
- title: ( localize2(9781, "Toggle Current Conflict from Left")),
353
+ title: ( localize2(9779, "Toggle Current Conflict from Left")),
354
354
  f1: true,
355
355
  precondition: ctxIsMergeEditor,
356
356
  });
@@ -364,7 +364,7 @@ class ToggleActiveConflictInput2 extends MergeEditorAction {
364
364
  super({
365
365
  id: 'merge.toggleActiveConflictInput2',
366
366
  category: mergeEditorCategory,
367
- title: ( localize2(9782, "Toggle Current Conflict from Right")),
367
+ title: ( localize2(9780, "Toggle Current Conflict from Right")),
368
368
  f1: true,
369
369
  precondition: ctxIsMergeEditor,
370
370
  });
@@ -378,8 +378,8 @@ class CompareInput1WithBaseCommand extends MergeEditorAction {
378
378
  super({
379
379
  id: 'mergeEditor.compareInput1WithBase',
380
380
  category: mergeEditorCategory,
381
- title: ( localize2(9783, "Compare Input 1 With Base")),
382
- shortTitle: ( localize(9784, 'Compare With Base')),
381
+ title: ( localize2(9781, "Compare Input 1 With Base")),
382
+ shortTitle: ( localize(9782, 'Compare With Base')),
383
383
  f1: true,
384
384
  precondition: ctxIsMergeEditor,
385
385
  menu: { id: MenuId.MergeInput1Toolbar, group: 'primary' },
@@ -396,8 +396,8 @@ class CompareInput2WithBaseCommand extends MergeEditorAction {
396
396
  super({
397
397
  id: 'mergeEditor.compareInput2WithBase',
398
398
  category: mergeEditorCategory,
399
- title: ( localize2(9785, "Compare Input 2 With Base")),
400
- shortTitle: ( localize(9784, 'Compare With Base')),
399
+ title: ( localize2(9783, "Compare Input 2 With Base")),
400
+ shortTitle: ( localize(9782, 'Compare With Base')),
401
401
  f1: true,
402
402
  precondition: ctxIsMergeEditor,
403
403
  menu: { id: MenuId.MergeInput2Toolbar, group: 'primary' },
@@ -433,7 +433,7 @@ class OpenBaseFile extends MergeEditorAction {
433
433
  super({
434
434
  id: 'merge.openBaseEditor',
435
435
  category: mergeEditorCategory,
436
- title: ( localize2(9786, "Open Base File")),
436
+ title: ( localize2(9784, "Open Base File")),
437
437
  f1: true,
438
438
  precondition: ctxIsMergeEditor,
439
439
  });
@@ -448,7 +448,7 @@ class AcceptAllInput1 extends MergeEditorAction {
448
448
  super({
449
449
  id: 'merge.acceptAllInput1',
450
450
  category: mergeEditorCategory,
451
- title: ( localize2(9787, "Accept All Changes from Left")),
451
+ title: ( localize2(9785, "Accept All Changes from Left")),
452
452
  f1: true,
453
453
  precondition: ctxIsMergeEditor,
454
454
  menu: { id: MenuId.MergeInput1Toolbar, group: 'primary' },
@@ -464,7 +464,7 @@ class AcceptAllInput2 extends MergeEditorAction {
464
464
  super({
465
465
  id: 'merge.acceptAllInput2',
466
466
  category: mergeEditorCategory,
467
- title: ( localize2(9788, "Accept All Changes from Right")),
467
+ title: ( localize2(9786, "Accept All Changes from Right")),
468
468
  f1: true,
469
469
  precondition: ctxIsMergeEditor,
470
470
  menu: { id: MenuId.MergeInput2Toolbar, group: 'primary' },
@@ -480,8 +480,8 @@ class ResetToBaseAndAutoMergeCommand extends MergeEditorAction {
480
480
  super({
481
481
  id: 'mergeEditor.resetResultToBaseAndAutoMerge',
482
482
  category: mergeEditorCategory,
483
- title: ( localize2(9789, "Reset Result")),
484
- shortTitle: ( localize(9790, 'Reset')),
483
+ title: ( localize2(9787, "Reset Result")),
484
+ shortTitle: ( localize(9788, 'Reset')),
485
485
  f1: true,
486
486
  precondition: ctxIsMergeEditor,
487
487
  menu: { id: MenuId.MergeInputResultToolbar, group: 'primary' },
@@ -497,7 +497,7 @@ class ResetCloseWithConflictsChoice extends Action2 {
497
497
  super({
498
498
  id: 'mergeEditor.resetCloseWithConflictsChoice',
499
499
  category: mergeEditorCategory,
500
- title: ( localize2(9791, "Reset Choice for \'Close with Conflicts\'")),
500
+ title: ( localize2(9789, "Reset Choice for \'Close with Conflicts\'")),
501
501
  f1: true,
502
502
  });
503
503
  }
@@ -510,7 +510,7 @@ class AcceptMerge extends MergeEditorAction2 {
510
510
  super({
511
511
  id: 'mergeEditor.acceptMerge',
512
512
  category: mergeEditorCategory,
513
- title: ( localize2(9792, "Complete Merge")),
513
+ title: ( localize2(9790, "Complete Merge")),
514
514
  f1: false,
515
515
  precondition: ctxIsMergeEditor
516
516
  });
@@ -521,12 +521,12 @@ class AcceptMerge extends MergeEditorAction2 {
521
521
  if (viewModel.model.unhandledConflictsCount.get() > 0) {
522
522
  const { confirmed } = await dialogService.confirm({
523
523
  message: ( localize(
524
- 9793,
524
+ 9791,
525
525
  "Do you want to complete the merge of {0}?",
526
526
  basename(inputModel.resultUri)
527
527
  )),
528
- detail: ( localize(9794, "The file contains unhandled conflicts.")),
529
- primaryButton: ( localize(9795, "&&Complete with Conflicts"))
528
+ detail: ( localize(9792, "The file contains unhandled conflicts.")),
529
+ primaryButton: ( localize(9793, "&&Complete with Conflicts"))
530
530
  });
531
531
  if (!confirmed) {
532
532
  return {