@codingame/monaco-vscode-view-common-service-override 11.0.1 → 11.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codingame/monaco-vscode-view-common-service-override",
3
- "version": "11.0.1",
3
+ "version": "11.0.2",
4
4
  "keywords": [],
5
5
  "author": {
6
6
  "name": "CodinGame",
@@ -26,9 +26,9 @@
26
26
  }
27
27
  },
28
28
  "dependencies": {
29
- "vscode": "npm:@codingame/monaco-vscode-api@11.0.1",
30
- "@codingame/monaco-vscode-explorer-outline-timeline-view-common-views-workbench-common": "11.0.1",
31
- "@codingame/monaco-vscode-bulk-edit-service-override": "11.0.1",
32
- "@codingame/monaco-vscode-view-common-views-workbench-common": "11.0.1"
29
+ "vscode": "npm:@codingame/monaco-vscode-api@11.0.2",
30
+ "@codingame/monaco-vscode-explorer-outline-timeline-view-common-views-workbench-common": "11.0.2",
31
+ "@codingame/monaco-vscode-bulk-edit-service-override": "11.0.2",
32
+ "@codingame/monaco-vscode-view-common-views-workbench-common": "11.0.2"
33
33
  }
34
34
  }
@@ -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(9910, 'Interactive Window')),
27
+ label: ( localize(9918, 'Interactive Window')),
28
28
  priority: RegisteredEditorPriority.builtin
29
29
  },
30
30
  {
31
31
  id: 'mainThreadWebview-markdown.preview',
32
- label: ( localize(9911, "Markdown Preview")),
32
+ label: ( localize(9919, "Markdown Preview")),
33
33
  priority: RegisteredEditorPriority.builtin
34
34
  },
35
35
  {
36
36
  id: 'mainThreadWebview-simpleBrowser.view',
37
- label: ( localize(9912, "Simple Browser")),
37
+ label: ( localize(9920, "Simple Browser")),
38
38
  priority: RegisteredEditorPriority.builtin
39
39
  },
40
40
  {
41
41
  id: 'mainThreadWebview-browserPreview',
42
- label: ( localize(9913, "Live Preview")),
42
+ label: ( localize(9921, "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
- 9914,
87
+ 9922,
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
- 9915,
105
+ 9923,
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
- 9916,
118
+ 9924,
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: 4 ,
139
139
  markdownDescription: ( localize(
140
- 9917,
140
+ 9925,
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
  }
@@ -257,13 +257,13 @@ let CallHierarchyTreePeekWidget = class CallHierarchyTreePeekWidget extends Peek
257
257
  }
258
258
  this._previewDisposable.add(value);
259
259
  const title = this._direction === "outgoingCalls"
260
- ? ( localize(9700, "Calls from '{0}'", element.model.root.name))
261
- : ( localize(9701, "Callers of '{0}'", element.model.root.name));
260
+ ? ( localize(9708, "Calls from '{0}'", element.model.root.name))
261
+ : ( localize(9709, "Callers of '{0}'", element.model.root.name));
262
262
  this.setTitle(title);
263
263
  }
264
264
  showLoading() {
265
265
  this._parent.dataset['state'] = "loading" ;
266
- this.setTitle(( localize(9702, "Loading...")));
266
+ this.setTitle(( localize(9710, "Loading...")));
267
267
  this._show();
268
268
  }
269
269
  showMessage(message) {
@@ -282,8 +282,8 @@ let CallHierarchyTreePeekWidget = class CallHierarchyTreePeekWidget extends Peek
282
282
  await this._tree.expand(root.element);
283
283
  if (root.children.length === 0) {
284
284
  this.showMessage(this._direction === "outgoingCalls"
285
- ? ( localize(9703, "No calls from '{0}'", model.root.name))
286
- : ( localize(9704, "No callers of '{0}'", model.root.name)));
285
+ ? ( localize(9711, "No calls from '{0}'", model.root.name))
286
+ : ( localize(9712, "No callers of '{0}'", model.root.name)));
287
287
  }
288
288
  else {
289
289
  this._parent.dataset['state'] = "data" ;
@@ -30,7 +30,7 @@ class ContributedCustomEditors extends Disposable {
30
30
  this.add(( (new CustomEditorInfo({
31
31
  id: webviewEditorContribution.viewType,
32
32
  displayName: webviewEditorContribution.displayName,
33
- providerDisplayName: extension.description.isBuiltin ? ( localize(9688, "Built-in")) : extension.description.displayName || extension.description.identifier.value,
33
+ providerDisplayName: extension.description.isBuiltin ? ( localize(9696, "Built-in")) : extension.description.displayName || extension.description.identifier.value,
34
34
  selector: webviewEditorContribution.selector || [],
35
35
  priority: getPriorityFromContribution(webviewEditorContribution, extension.description),
36
36
  }))));
@@ -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(9687, "The viewType of the currently active custom editor.")),
8
+ description: ( localize(9695, "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
  class CustomEditorInfo {
@@ -54,7 +54,7 @@ class OpenMergeEditor extends Action2 {
54
54
  constructor() {
55
55
  super({
56
56
  id: '_open.mergeEditor',
57
- title: ( localize2(9923, 'Open Merge Editor')),
57
+ title: ( localize2(9931, 'Open Merge Editor')),
58
58
  });
59
59
  }
60
60
  run(accessor, ...args) {
@@ -133,7 +133,7 @@ class SetMixedLayout extends Action2 {
133
133
  constructor() {
134
134
  super({
135
135
  id: 'merge.mixedLayout',
136
- title: ( localize2(9924, "Mixed Layout")),
136
+ title: ( localize2(9932, "Mixed Layout")),
137
137
  toggled: ( (ctxMergeEditorLayout.isEqualTo('mixed'))),
138
138
  menu: [
139
139
  {
@@ -157,7 +157,7 @@ class SetColumnLayout extends Action2 {
157
157
  constructor() {
158
158
  super({
159
159
  id: 'merge.columnLayout',
160
- title: ( localize2(9925, 'Column Layout')),
160
+ title: ( localize2(9933, 'Column Layout')),
161
161
  toggled: ( (ctxMergeEditorLayout.isEqualTo('columns'))),
162
162
  menu: [{
163
163
  id: MenuId.EditorTitle,
@@ -179,7 +179,7 @@ class ShowNonConflictingChanges extends Action2 {
179
179
  constructor() {
180
180
  super({
181
181
  id: 'merge.showNonConflictingChanges',
182
- title: ( localize2(9926, "Show Non-Conflicting Changes")),
182
+ title: ( localize2(9934, "Show Non-Conflicting Changes")),
183
183
  toggled: ( (ctxMergeEditorShowNonConflictingChanges.isEqualTo(true))),
184
184
  menu: [
185
185
  {
@@ -203,7 +203,7 @@ class ShowHideBase extends Action2 {
203
203
  constructor() {
204
204
  super({
205
205
  id: 'merge.showBase',
206
- title: ( localize2(9927, "Show Base")),
206
+ title: ( localize2(9935, "Show Base")),
207
207
  toggled: ( (ctxMergeEditorShowBase.isEqualTo(true))),
208
208
  menu: [
209
209
  {
@@ -229,7 +229,7 @@ class ShowHideTopBase extends Action2 {
229
229
  constructor() {
230
230
  super({
231
231
  id: 'merge.showBaseTop',
232
- title: ( localize2(9928, "Show Base Top")),
232
+ title: ( localize2(9936, "Show Base Top")),
233
233
  toggled: ( (ContextKeyExpr.and(ctxMergeEditorShowBase, ctxMergeEditorShowBaseAtTop))),
234
234
  menu: [
235
235
  {
@@ -252,7 +252,7 @@ class ShowHideCenterBase extends Action2 {
252
252
  constructor() {
253
253
  super({
254
254
  id: 'merge.showBaseCenter',
255
- title: ( localize2(9929, "Show Base Center")),
255
+ title: ( localize2(9937, "Show Base Center")),
256
256
  toggled: ( (ContextKeyExpr.and(
257
257
  ctxMergeEditorShowBase,
258
258
  (ctxMergeEditorShowBaseAtTop.negate())
@@ -274,13 +274,13 @@ class ShowHideCenterBase extends Action2 {
274
274
  }
275
275
  }
276
276
  }
277
- const mergeEditorCategory = ( localize2(9930, "Merge Editor"));
277
+ const mergeEditorCategory = ( localize2(9938, "Merge Editor"));
278
278
  class OpenResultResource extends MergeEditorAction {
279
279
  constructor() {
280
280
  super({
281
281
  id: 'merge.openResult',
282
282
  icon: Codicon.goToFile,
283
- title: ( localize2(9931, "Open File")),
283
+ title: ( localize2(9939, "Open File")),
284
284
  category: mergeEditorCategory,
285
285
  menu: [{
286
286
  id: MenuId.EditorTitle,
@@ -301,7 +301,7 @@ class GoToNextUnhandledConflict extends MergeEditorAction {
301
301
  super({
302
302
  id: 'merge.goToNextUnhandledConflict',
303
303
  category: mergeEditorCategory,
304
- title: ( localize2(9932, "Go to Next Unhandled Conflict")),
304
+ title: ( localize2(9940, "Go to Next Unhandled Conflict")),
305
305
  icon: Codicon.arrowDown,
306
306
  menu: [
307
307
  {
@@ -325,7 +325,7 @@ class GoToPreviousUnhandledConflict extends MergeEditorAction {
325
325
  super({
326
326
  id: 'merge.goToPreviousUnhandledConflict',
327
327
  category: mergeEditorCategory,
328
- title: ( localize2(9933, "Go to Previous Unhandled Conflict")),
328
+ title: ( localize2(9941, "Go to Previous Unhandled Conflict")),
329
329
  icon: Codicon.arrowUp,
330
330
  menu: [
331
331
  {
@@ -349,7 +349,7 @@ class ToggleActiveConflictInput1 extends MergeEditorAction {
349
349
  super({
350
350
  id: 'merge.toggleActiveConflictInput1',
351
351
  category: mergeEditorCategory,
352
- title: ( localize2(9934, "Toggle Current Conflict from Left")),
352
+ title: ( localize2(9942, "Toggle Current Conflict from Left")),
353
353
  f1: true,
354
354
  precondition: ctxIsMergeEditor,
355
355
  });
@@ -363,7 +363,7 @@ class ToggleActiveConflictInput2 extends MergeEditorAction {
363
363
  super({
364
364
  id: 'merge.toggleActiveConflictInput2',
365
365
  category: mergeEditorCategory,
366
- title: ( localize2(9935, "Toggle Current Conflict from Right")),
366
+ title: ( localize2(9943, "Toggle Current Conflict from Right")),
367
367
  f1: true,
368
368
  precondition: ctxIsMergeEditor,
369
369
  });
@@ -377,8 +377,8 @@ class CompareInput1WithBaseCommand extends MergeEditorAction {
377
377
  super({
378
378
  id: 'mergeEditor.compareInput1WithBase',
379
379
  category: mergeEditorCategory,
380
- title: ( localize2(9936, "Compare Input 1 With Base")),
381
- shortTitle: ( localize(9937, 'Compare With Base')),
380
+ title: ( localize2(9944, "Compare Input 1 With Base")),
381
+ shortTitle: ( localize(9945, 'Compare With Base')),
382
382
  f1: true,
383
383
  precondition: ctxIsMergeEditor,
384
384
  menu: { id: MenuId.MergeInput1Toolbar, group: 'primary' },
@@ -395,8 +395,8 @@ class CompareInput2WithBaseCommand extends MergeEditorAction {
395
395
  super({
396
396
  id: 'mergeEditor.compareInput2WithBase',
397
397
  category: mergeEditorCategory,
398
- title: ( localize2(9938, "Compare Input 2 With Base")),
399
- shortTitle: ( localize(9937, 'Compare With Base')),
398
+ title: ( localize2(9946, "Compare Input 2 With Base")),
399
+ shortTitle: ( localize(9945, 'Compare With Base')),
400
400
  f1: true,
401
401
  precondition: ctxIsMergeEditor,
402
402
  menu: { id: MenuId.MergeInput2Toolbar, group: 'primary' },
@@ -432,7 +432,7 @@ class OpenBaseFile extends MergeEditorAction {
432
432
  super({
433
433
  id: 'merge.openBaseEditor',
434
434
  category: mergeEditorCategory,
435
- title: ( localize2(9939, "Open Base File")),
435
+ title: ( localize2(9947, "Open Base File")),
436
436
  f1: true,
437
437
  precondition: ctxIsMergeEditor,
438
438
  });
@@ -447,7 +447,7 @@ class AcceptAllInput1 extends MergeEditorAction {
447
447
  super({
448
448
  id: 'merge.acceptAllInput1',
449
449
  category: mergeEditorCategory,
450
- title: ( localize2(9940, "Accept All Changes from Left")),
450
+ title: ( localize2(9948, "Accept All Changes from Left")),
451
451
  f1: true,
452
452
  precondition: ctxIsMergeEditor,
453
453
  menu: { id: MenuId.MergeInput1Toolbar, group: 'primary' },
@@ -463,7 +463,7 @@ class AcceptAllInput2 extends MergeEditorAction {
463
463
  super({
464
464
  id: 'merge.acceptAllInput2',
465
465
  category: mergeEditorCategory,
466
- title: ( localize2(9941, "Accept All Changes from Right")),
466
+ title: ( localize2(9949, "Accept All Changes from Right")),
467
467
  f1: true,
468
468
  precondition: ctxIsMergeEditor,
469
469
  menu: { id: MenuId.MergeInput2Toolbar, group: 'primary' },
@@ -479,8 +479,8 @@ class ResetToBaseAndAutoMergeCommand extends MergeEditorAction {
479
479
  super({
480
480
  id: 'mergeEditor.resetResultToBaseAndAutoMerge',
481
481
  category: mergeEditorCategory,
482
- title: ( localize2(9942, "Reset Result")),
483
- shortTitle: ( localize(9943, 'Reset')),
482
+ title: ( localize2(9950, "Reset Result")),
483
+ shortTitle: ( localize(9951, 'Reset')),
484
484
  f1: true,
485
485
  precondition: ctxIsMergeEditor,
486
486
  menu: { id: MenuId.MergeInputResultToolbar, group: 'primary' },
@@ -496,7 +496,7 @@ class ResetCloseWithConflictsChoice extends Action2 {
496
496
  super({
497
497
  id: 'mergeEditor.resetCloseWithConflictsChoice',
498
498
  category: mergeEditorCategory,
499
- title: ( localize2(9944, "Reset Choice for \'Close with Conflicts\'")),
499
+ title: ( localize2(9952, "Reset Choice for \'Close with Conflicts\'")),
500
500
  f1: true,
501
501
  });
502
502
  }
@@ -509,7 +509,7 @@ class AcceptMerge extends MergeEditorAction2 {
509
509
  super({
510
510
  id: 'mergeEditor.acceptMerge',
511
511
  category: mergeEditorCategory,
512
- title: ( localize2(9945, "Complete Merge")),
512
+ title: ( localize2(9953, "Complete Merge")),
513
513
  f1: false,
514
514
  precondition: ctxIsMergeEditor
515
515
  });
@@ -520,12 +520,12 @@ class AcceptMerge extends MergeEditorAction2 {
520
520
  if (viewModel.model.unhandledConflictsCount.get() > 0) {
521
521
  const { confirmed } = await dialogService.confirm({
522
522
  message: ( localize(
523
- 9946,
523
+ 9954,
524
524
  "Do you want to complete the merge of {0}?",
525
525
  basename(inputModel.resultUri)
526
526
  )),
527
- detail: ( localize(9947, "The file contains unhandled conflicts.")),
528
- primaryButton: ( localize(9948, "&&Complete with Conflicts"))
527
+ detail: ( localize(9955, "The file contains unhandled conflicts.")),
528
+ primaryButton: ( localize(9956, "&&Complete with Conflicts"))
529
529
  });
530
530
  if (!confirmed) {
531
531
  return {
@@ -13,13 +13,13 @@ import { MergeEditor } from '../view/mergeEditor.js';
13
13
  import { ctxIsMergeEditor } from 'vscode/vscode/vs/workbench/contrib/mergeEditor/common/mergeEditor';
14
14
  import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService.service';
15
15
 
16
- const MERGE_EDITOR_CATEGORY = ( localize2(9949, 'Merge Editor (Dev)'));
16
+ const MERGE_EDITOR_CATEGORY = ( localize2(9957, 'Merge Editor (Dev)'));
17
17
  class MergeEditorCopyContentsToJSON extends Action2 {
18
18
  constructor() {
19
19
  super({
20
20
  id: 'merge.dev.copyContentsJson',
21
21
  category: MERGE_EDITOR_CATEGORY,
22
- title: ( localize2(9950, "Copy Merge Editor State as JSON")),
22
+ title: ( localize2(9958, "Copy Merge Editor State as JSON")),
23
23
  icon: Codicon.layoutCentered,
24
24
  f1: true,
25
25
  precondition: ctxIsMergeEditor,
@@ -31,8 +31,8 @@ class MergeEditorCopyContentsToJSON extends Action2 {
31
31
  const notificationService = accessor.get(INotificationService);
32
32
  if (!(activeEditorPane instanceof MergeEditor)) {
33
33
  notificationService.info({
34
- name: ( localize(9951, 'Merge Editor')),
35
- message: ( localize(9952, "No active merge editor"))
34
+ name: ( localize(9959, 'Merge Editor')),
35
+ message: ( localize(9960, "No active merge editor"))
36
36
  });
37
37
  return;
38
38
  }
@@ -51,8 +51,8 @@ class MergeEditorCopyContentsToJSON extends Action2 {
51
51
  const jsonStr = JSON.stringify(contents, undefined, 4);
52
52
  clipboardService.writeText(jsonStr);
53
53
  notificationService.info({
54
- name: ( localize(9951, 'Merge Editor')),
55
- message: ( localize(9953, "Successfully copied merge editor state")),
54
+ name: ( localize(9959, 'Merge Editor')),
55
+ message: ( localize(9961, "Successfully copied merge editor state")),
56
56
  });
57
57
  }
58
58
  }
@@ -61,7 +61,7 @@ class MergeEditorSaveContentsToFolder extends Action2 {
61
61
  super({
62
62
  id: 'merge.dev.saveContentsToFolder',
63
63
  category: MERGE_EDITOR_CATEGORY,
64
- title: ( localize2(9954, "Save Merge Editor State to Folder")),
64
+ title: ( localize2(9962, "Save Merge Editor State to Folder")),
65
65
  icon: Codicon.layoutCentered,
66
66
  f1: true,
67
67
  precondition: ctxIsMergeEditor,
@@ -75,8 +75,8 @@ class MergeEditorSaveContentsToFolder extends Action2 {
75
75
  const languageService = accessor.get(ILanguageService);
76
76
  if (!(activeEditorPane instanceof MergeEditor)) {
77
77
  notificationService.info({
78
- name: ( localize(9951, 'Merge Editor')),
79
- message: ( localize(9952, "No active merge editor"))
78
+ name: ( localize(9959, 'Merge Editor')),
79
+ message: ( localize(9960, "No active merge editor"))
80
80
  });
81
81
  return;
82
82
  }
@@ -88,7 +88,7 @@ class MergeEditorSaveContentsToFolder extends Action2 {
88
88
  canSelectFiles: false,
89
89
  canSelectFolders: true,
90
90
  canSelectMany: false,
91
- title: ( localize(9955, 'Select folder to save to'))
91
+ title: ( localize(9963, 'Select folder to save to'))
92
92
  });
93
93
  if (!result) {
94
94
  return;
@@ -106,8 +106,8 @@ class MergeEditorSaveContentsToFolder extends Action2 {
106
106
  write('initialResult', model.getInitialResultValue()),
107
107
  ]);
108
108
  notificationService.info({
109
- name: ( localize(9951, 'Merge Editor')),
110
- message: ( localize(9956, "Successfully saved merge editor state to folder")),
109
+ name: ( localize(9959, 'Merge Editor')),
110
+ message: ( localize(9964, "Successfully saved merge editor state to folder")),
111
111
  });
112
112
  }
113
113
  }
@@ -116,7 +116,7 @@ class MergeEditorLoadContentsFromFolder extends Action2 {
116
116
  super({
117
117
  id: 'merge.dev.loadContentsFromFolder',
118
118
  category: MERGE_EDITOR_CATEGORY,
119
- title: ( localize2(9957, "Load Merge Editor State from Folder")),
119
+ title: ( localize2(9965, "Load Merge Editor State from Folder")),
120
120
  icon: Codicon.layoutCentered,
121
121
  f1: true
122
122
  });
@@ -135,7 +135,7 @@ class MergeEditorLoadContentsFromFolder extends Action2 {
135
135
  canSelectFiles: false,
136
136
  canSelectFolders: true,
137
137
  canSelectMany: false,
138
- title: ( localize(9955, 'Select folder to save to'))
138
+ title: ( localize(9963, 'Select folder to save to'))
139
139
  });
140
140
  if (!result) {
141
141
  return;
@@ -122,7 +122,7 @@ let MergeEditor = class MergeEditor extends AbstractTextEditor {
122
122
  if (this.input) {
123
123
  return this.input.getName();
124
124
  }
125
- return ( localize(9958, "Text Merge Editor"));
125
+ return ( localize(9966, "Text Merge Editor"));
126
126
  }
127
127
  createEditorControl(parent, initialOptions) {
128
128
  this.rootHtmlElement = parent;
@@ -252,13 +252,13 @@ let TypeHierarchyTreePeekWidget = class TypeHierarchyTreePeekWidget extends Peek
252
252
  }
253
253
  this._previewDisposable.add(value);
254
254
  const title = this._direction === "supertypes"
255
- ? ( localize(9705, "Supertypes of '{0}'", element.model.root.name))
256
- : ( localize(9706, "Subtypes of '{0}'", element.model.root.name));
255
+ ? ( localize(9713, "Supertypes of '{0}'", element.model.root.name))
256
+ : ( localize(9714, "Subtypes of '{0}'", element.model.root.name));
257
257
  this.setTitle(title);
258
258
  }
259
259
  showLoading() {
260
260
  this._parent.dataset['state'] = "loading" ;
261
- this.setTitle(( localize(9707, "Loading...")));
261
+ this.setTitle(( localize(9715, "Loading...")));
262
262
  this._show();
263
263
  }
264
264
  showMessage(message) {
@@ -277,8 +277,8 @@ let TypeHierarchyTreePeekWidget = class TypeHierarchyTreePeekWidget extends Peek
277
277
  await this._tree.expand(root.element);
278
278
  if (root.children.length === 0) {
279
279
  this.showMessage(this._direction === "supertypes"
280
- ? ( localize(9708, "No supertypes of '{0}'", model.root.name))
281
- : ( localize(9709, "No subtypes of '{0}'", model.root.name)));
280
+ ? ( localize(9716, "No supertypes of '{0}'", model.root.name))
281
+ : ( localize(9717, "No subtypes of '{0}'", model.root.name)));
282
282
  }
283
283
  else {
284
284
  this._parent.dataset['state'] = "data" ;
@@ -157,7 +157,7 @@ let WebviewElement = class WebviewElement extends Disposable {
157
157
  this._hasFindResult.fire(didFind);
158
158
  }));
159
159
  this._register(this.on('fatal-error', (e) => {
160
- notificationService.error(( localize(9692, "Error loading webview: {0}", e.message)));
160
+ notificationService.error(( localize(9700, "Error loading webview: {0}", e.message)));
161
161
  this._onFatalError.fire({ message: e.message });
162
162
  }));
163
163
  this._register(this.on('did-keydown', (data) => {
@@ -15,7 +15,7 @@ const webviewActiveContextKeyExpr = ( (ContextKeyExpr.and(
15
15
  )));
16
16
  class ShowWebViewEditorFindWidgetAction extends Action2 {
17
17
  static { this.ID = 'editor.action.webvieweditor.showFind'; }
18
- static { this.LABEL = ( localize(9918, "Show find")); }
18
+ static { this.LABEL = ( localize(9926, "Show find")); }
19
19
  constructor() {
20
20
  super({
21
21
  id: ShowWebViewEditorFindWidgetAction.ID,
@@ -36,7 +36,7 @@ class ShowWebViewEditorFindWidgetAction extends Action2 {
36
36
  }
37
37
  class HideWebViewEditorFindCommand extends Action2 {
38
38
  static { this.ID = 'editor.action.webvieweditor.hideFind'; }
39
- static { this.LABEL = ( localize(9919, "Stop find")); }
39
+ static { this.LABEL = ( localize(9927, "Stop find")); }
40
40
  constructor() {
41
41
  super({
42
42
  id: HideWebViewEditorFindCommand.ID,
@@ -57,7 +57,7 @@ class HideWebViewEditorFindCommand extends Action2 {
57
57
  }
58
58
  class WebViewEditorFindNextCommand extends Action2 {
59
59
  static { this.ID = 'editor.action.webvieweditor.findNext'; }
60
- static { this.LABEL = ( localize(9920, 'Find next')); }
60
+ static { this.LABEL = ( localize(9928, 'Find next')); }
61
61
  constructor() {
62
62
  super({
63
63
  id: WebViewEditorFindNextCommand.ID,
@@ -78,7 +78,7 @@ class WebViewEditorFindNextCommand extends Action2 {
78
78
  }
79
79
  class WebViewEditorFindPreviousCommand extends Action2 {
80
80
  static { this.ID = 'editor.action.webvieweditor.findPrevious'; }
81
- static { this.LABEL = ( localize(9921, 'Find previous')); }
81
+ static { this.LABEL = ( localize(9929, 'Find previous')); }
82
82
  constructor() {
83
83
  super({
84
84
  id: WebViewEditorFindPreviousCommand.ID,
@@ -99,7 +99,7 @@ class WebViewEditorFindPreviousCommand extends Action2 {
99
99
  }
100
100
  class ReloadWebviewAction extends Action2 {
101
101
  static { this.ID = 'workbench.action.webview.reloadWebviewAction'; }
102
- static { this.LABEL = ( localize2(9922, "Reload Webviews")); }
102
+ static { this.LABEL = ( localize2(9930, "Reload Webviews")); }
103
103
  constructor() {
104
104
  super({
105
105
  id: ReloadWebviewAction.ID,
@@ -23,7 +23,7 @@ registerAction2(class extends Action2 {
23
23
  constructor() {
24
24
  super({
25
25
  id: '_workbench.output.showViewsLog',
26
- title: ( localize2(9686, "Show Views Log")),
26
+ title: ( localize2(9694, "Show Views Log")),
27
27
  category: Categories.Developer,
28
28
  f1: true
29
29
  });