@codingame/monaco-vscode-bulk-edit-service-override 16.1.0 → 17.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codingame/monaco-vscode-bulk-edit-service-override",
3
- "version": "16.1.0",
3
+ "version": "17.0.0",
4
4
  "private": false,
5
5
  "description": "VSCode public API plugged on the monaco editor - bulk-edit service-override",
6
6
  "keywords": [],
@@ -15,11 +15,11 @@
15
15
  },
16
16
  "type": "module",
17
17
  "dependencies": {
18
- "@codingame/monaco-vscode-12c5f9eb-72d3-57ca-babd-5bef7aa9de3b-common": "16.1.0",
19
- "@codingame/monaco-vscode-65619f8f-0eab-5d8b-855a-43b6353fe527-common": "16.1.0",
20
- "@codingame/monaco-vscode-9a6d8b6c-ad4c-5ea3-9558-f43d6dc4c0ad-common": "16.1.0",
21
- "@codingame/monaco-vscode-api": "16.1.0",
22
- "@codingame/monaco-vscode-e67a0dae-5b2c-54e6-8d61-90102c78362d-common": "16.1.0"
18
+ "@codingame/monaco-vscode-324f9a6e-6231-5bfc-af17-e147abd2dfd2-common": "17.0.0",
19
+ "@codingame/monaco-vscode-65619f8f-0eab-5d8b-855a-43b6353fe527-common": "17.0.0",
20
+ "@codingame/monaco-vscode-api": "17.0.0",
21
+ "@codingame/monaco-vscode-bed2b49f-41ae-5ed2-b61a-1105500a3f8a-common": "17.0.0",
22
+ "@codingame/monaco-vscode-e67a0dae-5b2c-54e6-8d61-90102c78362d-common": "17.0.0"
23
23
  },
24
24
  "main": "index.js",
25
25
  "module": "index.js",
@@ -17,7 +17,7 @@ import { ILogService } from '@codingame/monaco-vscode-api/vscode/vs/platform/log
17
17
  import { Progress } from '@codingame/monaco-vscode-api/vscode/vs/platform/progress/common/progress';
18
18
  import { Registry } from '@codingame/monaco-vscode-api/vscode/vs/platform/registry/common/platform';
19
19
  import { UndoRedoGroup } from '@codingame/monaco-vscode-api/vscode/vs/platform/undoRedo/common/undoRedo';
20
- import { ResourceNotebookCellEdit, BulkCellEdits } from '@codingame/monaco-vscode-9a6d8b6c-ad4c-5ea3-9558-f43d6dc4c0ad-common/vscode/vs/workbench/contrib/bulkEdit/browser/bulkCellEdits';
20
+ import { ResourceNotebookCellEdit, BulkCellEdits } from '@codingame/monaco-vscode-324f9a6e-6231-5bfc-af17-e147abd2dfd2-common/vscode/vs/workbench/contrib/bulkEdit/browser/bulkCellEdits';
21
21
  import { BulkFileEdits } from './bulkFileEdits.js';
22
22
  import { BulkTextEdits } from './bulkTextEdits.js';
23
23
  import { IEditorService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService.service';
@@ -71,24 +71,24 @@ let BulkEdit = class BulkEdit {
71
71
  }
72
72
  }
73
73
  if (this._edits.length === 0) {
74
- return localize(4202, "Made no edits");
74
+ return localize(4231, "Made no edits");
75
75
  }
76
76
  else if (otherResources.size === 0) {
77
77
  if (textEditCount > 1 && textEditResources.size > 1) {
78
78
  return localize(
79
- 4203,
79
+ 4232,
80
80
  "Made {0} text edits in {1} files",
81
81
  textEditCount,
82
82
  textEditResources.size
83
83
  );
84
84
  }
85
85
  else {
86
- return localize(4204, "Made {0} text edits in one file", textEditCount);
86
+ return localize(4233, "Made {0} text edits in one file", textEditCount);
87
87
  }
88
88
  }
89
89
  else {
90
90
  return localize(
91
- 4205,
91
+ 4234,
92
92
  "Made {0} text edits in {1} files, also created or deleted {2} files",
93
93
  textEditCount,
94
94
  textEditResources.size,
@@ -140,12 +140,12 @@ let BulkEdit = class BulkEdit {
140
140
  }
141
141
  async _performFileEdits(edits, undoRedoGroup, undoRedoSource, confirmBeforeUndo, progress) {
142
142
  this._logService.debug('_performFileEdits', JSON.stringify(edits));
143
- const model = this._instaService.createInstance(BulkFileEdits, this._label || ( localize(4206, "Workspace Edit")), this._code || 'undoredo.workspaceEdit', undoRedoGroup, undoRedoSource, confirmBeforeUndo, progress, this._token, edits);
143
+ const model = this._instaService.createInstance(BulkFileEdits, this._label || ( localize(4235, "Workspace Edit")), this._code || 'undoredo.workspaceEdit', undoRedoGroup, undoRedoSource, confirmBeforeUndo, progress, this._token, edits);
144
144
  return await model.apply();
145
145
  }
146
146
  async _performTextEdits(edits, undoRedoGroup, undoRedoSource, progress) {
147
147
  this._logService.debug('_performTextEdits', JSON.stringify(edits));
148
- const model = this._instaService.createInstance(BulkTextEdits, this._label || ( localize(4206, "Workspace Edit")), this._code || 'undoredo.workspaceEdit', this._editor, undoRedoGroup, undoRedoSource, progress, this._token, edits);
148
+ const model = this._instaService.createInstance(BulkTextEdits, this._label || ( localize(4235, "Workspace Edit")), this._code || 'undoredo.workspaceEdit', this._editor, undoRedoGroup, undoRedoSource, progress, this._token, edits);
149
149
  return await model.apply();
150
150
  }
151
151
  async _performCellEdits(edits, undoRedoGroup, undoRedoSource, progress) {
@@ -188,7 +188,7 @@ let BulkEditService = class BulkEditService {
188
188
  async apply(editsIn, options) {
189
189
  let edits = liftEdits(Array.isArray(editsIn) ? editsIn : editsIn.edits);
190
190
  if (edits.length === 0) {
191
- return { ariaSummary: ( localize(4207, "Made no edits")), isApplied: false };
191
+ return { ariaSummary: ( localize(4236, "Made no edits")), isApplied: false };
192
192
  }
193
193
  if (this._previewHandler && (options?.showPreview || ( edits.some(value => value.metadata?.needsConfirmation)))) {
194
194
  edits = await this._previewHandler(edits, options);
@@ -259,28 +259,28 @@ let BulkEditService = class BulkEditService {
259
259
  let primaryButton;
260
260
  switch (reason) {
261
261
  case ShutdownReason.CLOSE:
262
- message = ( localize(4208, "Are you sure you want to close the window?"));
263
- primaryButton = ( localize(4209, "&&Close Window"));
262
+ message = ( localize(4237, "Are you sure you want to close the window?"));
263
+ primaryButton = ( localize(4238, "&&Close Window"));
264
264
  break;
265
265
  case ShutdownReason.LOAD:
266
- message = ( localize(4210, "Are you sure you want to change the workspace?"));
267
- primaryButton = ( localize(4211, "Change &&Workspace"));
266
+ message = ( localize(4239, "Are you sure you want to change the workspace?"));
267
+ primaryButton = ( localize(4240, "Change &&Workspace"));
268
268
  break;
269
269
  case ShutdownReason.RELOAD:
270
- message = ( localize(4212, "Are you sure you want to reload the window?"));
271
- primaryButton = ( localize(4213, "&&Reload Window"));
270
+ message = ( localize(4241, "Are you sure you want to reload the window?"));
271
+ primaryButton = ( localize(4242, "&&Reload Window"));
272
272
  break;
273
273
  default:
274
- message = ( localize(4214, "Are you sure you want to quit?"));
275
- primaryButton = ( localize(4215, "&&Quit"));
274
+ message = ( localize(4243, "Are you sure you want to quit?"));
275
+ primaryButton = ( localize(4244, "&&Quit"));
276
276
  break;
277
277
  }
278
278
  const result = await this._dialogService.confirm({
279
279
  message,
280
280
  detail: ( localize(
281
- 4216,
281
+ 4245,
282
282
  "'{0}' is in progress.",
283
- label || ( localize(4217, "File operation"))
283
+ label || ( localize(4246, "File operation"))
284
284
  )),
285
285
  primaryButton
286
286
  });
@@ -302,7 +302,7 @@ const autoSaveSetting = 'files.refactoring.autoSave';
302
302
  properties: {
303
303
  [autoSaveSetting]: {
304
304
  description: ( localize(
305
- 4218,
305
+ 4247,
306
306
  "Controls if files that were part of a refactoring are saved automatically"
307
307
  )),
308
308
  default: true,
@@ -6,7 +6,7 @@ import { ResourceMap } from '@codingame/monaco-vscode-api/vscode/vs/base/common/
6
6
  import { DisposableStore } from '@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle';
7
7
  import { Emitter } from '@codingame/monaco-vscode-api/vscode/vs/base/common/event';
8
8
  import { ResourceTextEdit, ResourceFileEdit } from '@codingame/monaco-vscode-api/vscode/vs/editor/browser/services/bulkEditService';
9
- import { ResourceNotebookCellEdit } from '@codingame/monaco-vscode-9a6d8b6c-ad4c-5ea3-9558-f43d6dc4c0ad-common/vscode/vs/workbench/contrib/bulkEdit/browser/bulkCellEdits';
9
+ import { ResourceNotebookCellEdit } from '@codingame/monaco-vscode-324f9a6e-6231-5bfc-af17-e147abd2dfd2-common/vscode/vs/workbench/contrib/bulkEdit/browser/bulkCellEdits';
10
10
  import { ILogService } from '@codingame/monaco-vscode-api/vscode/vs/platform/log/common/log.service';
11
11
 
12
12
  let ConflictDetector = class ConflictDetector {
@@ -97,12 +97,12 @@ let BulkEditPreviewContribution = class BulkEditPreviewContribution {
97
97
  if (view.hasInput()) {
98
98
  const { confirmed } = await this._dialogService.confirm({
99
99
  type: Severity.Info,
100
- message: ( localize(4219, "Another refactoring is being previewed.")),
100
+ message: ( localize(4248, "Another refactoring is being previewed.")),
101
101
  detail: ( localize(
102
- 4220,
102
+ 4249,
103
103
  "Press 'Continue' to discard the previous refactoring and continue with the current refactoring."
104
104
  )),
105
- primaryButton: ( localize(4221, "&&Continue"))
105
+ primaryButton: ( localize(4250, "&&Continue"))
106
106
  });
107
107
  if (!confirmed) {
108
108
  return [];
@@ -143,8 +143,8 @@ registerAction2(class ApplyAction extends Action2 {
143
143
  constructor() {
144
144
  super({
145
145
  id: 'refactorPreview.apply',
146
- title: ( localize2(4222, "Apply Refactoring")),
147
- category: ( localize2(4223, "Refactor Preview")),
146
+ title: ( localize2(4251, "Apply Refactoring")),
147
+ category: ( localize2(4252, "Refactor Preview")),
148
148
  icon: Codicon.check,
149
149
  precondition: ( ContextKeyExpr.and(BulkEditPreviewContribution.ctxEnabled, BulkEditPane.ctxHasCheckedChanges)),
150
150
  menu: [{
@@ -168,8 +168,8 @@ registerAction2(class DiscardAction extends Action2 {
168
168
  constructor() {
169
169
  super({
170
170
  id: 'refactorPreview.discard',
171
- title: ( localize2(4224, "Discard Refactoring")),
172
- category: ( localize2(4223, "Refactor Preview")),
171
+ title: ( localize2(4253, "Discard Refactoring")),
172
+ category: ( localize2(4252, "Refactor Preview")),
173
173
  icon: Codicon.clearAll,
174
174
  precondition: BulkEditPreviewContribution.ctxEnabled,
175
175
  menu: [{
@@ -188,8 +188,8 @@ registerAction2(class ToggleAction extends Action2 {
188
188
  constructor() {
189
189
  super({
190
190
  id: 'refactorPreview.toggleCheckedState',
191
- title: ( localize2(4225, "Toggle Change")),
192
- category: ( localize2(4223, "Refactor Preview")),
191
+ title: ( localize2(4254, "Toggle Change")),
192
+ category: ( localize2(4252, "Refactor Preview")),
193
193
  precondition: BulkEditPreviewContribution.ctxEnabled,
194
194
  keybinding: {
195
195
  weight: KeybindingWeight.WorkbenchContrib,
@@ -212,8 +212,8 @@ registerAction2(class GroupByFile extends Action2 {
212
212
  constructor() {
213
213
  super({
214
214
  id: 'refactorPreview.groupByFile',
215
- title: ( localize2(4226, "Group Changes By File")),
216
- category: ( localize2(4223, "Refactor Preview")),
215
+ title: ( localize2(4255, "Group Changes By File")),
216
+ category: ( localize2(4252, "Refactor Preview")),
217
217
  icon: Codicon.ungroupByRefType,
218
218
  precondition: ( ContextKeyExpr.and(BulkEditPane.ctxHasCategories, ( BulkEditPane.ctxGroupByFile.negate()), BulkEditPreviewContribution.ctxEnabled)),
219
219
  menu: [{
@@ -234,8 +234,8 @@ registerAction2(class GroupByType extends Action2 {
234
234
  constructor() {
235
235
  super({
236
236
  id: 'refactorPreview.groupByType',
237
- title: ( localize2(4227, "Group Changes By Type")),
238
- category: ( localize2(4223, "Refactor Preview")),
237
+ title: ( localize2(4256, "Group Changes By Type")),
238
+ category: ( localize2(4252, "Refactor Preview")),
239
239
  icon: Codicon.groupByRefType,
240
240
  precondition: ( ContextKeyExpr.and(
241
241
  BulkEditPane.ctxHasCategories,
@@ -260,8 +260,8 @@ registerAction2(class ToggleGrouping extends Action2 {
260
260
  constructor() {
261
261
  super({
262
262
  id: 'refactorPreview.toggleGrouping',
263
- title: ( localize2(4227, "Group Changes By Type")),
264
- category: ( localize2(4223, "Refactor Preview")),
263
+ title: ( localize2(4256, "Group Changes By Type")),
264
+ category: ( localize2(4252, "Refactor Preview")),
265
265
  icon: Codicon.listTree,
266
266
  toggled: ( BulkEditPane.ctxGroupByFile.negate()),
267
267
  precondition: ( ContextKeyExpr.and(BulkEditPane.ctxHasCategories, BulkEditPreviewContribution.ctxEnabled)),
@@ -278,10 +278,10 @@ registerAction2(class ToggleGrouping extends Action2 {
278
278
  }
279
279
  });
280
280
  registerWorkbenchContribution2(BulkEditPreviewContribution.ID, BulkEditPreviewContribution, WorkbenchPhase.BlockRestore);
281
- const refactorPreviewViewIcon = registerIcon('refactor-preview-view-icon', Codicon.lightbulb, ( localize(4228, 'View icon of the refactor preview view.')));
281
+ const refactorPreviewViewIcon = registerIcon('refactor-preview-view-icon', Codicon.lightbulb, ( localize(4257, 'View icon of the refactor preview view.')));
282
282
  const container = ( Registry.as(Extensions.ViewContainersRegistry)).registerViewContainer({
283
283
  id: BulkEditPane.ID,
284
- title: ( localize2(4229, "Refactor Preview")),
284
+ title: ( localize2(4258, "Refactor Preview")),
285
285
  hideIfEmpty: true,
286
286
  ctorDescriptor: ( new SyncDescriptor(
287
287
  ViewPaneContainer,
@@ -292,7 +292,7 @@ const container = ( Registry.as(Extensions.ViewContainersRegistry)).registerView
292
292
  }, ViewContainerLocation.Panel);
293
293
  ( Registry.as(Extensions.ViewsRegistry)).registerViews([{
294
294
  id: BulkEditPane.ID,
295
- name: ( localize2(4229, "Refactor Preview")),
295
+ name: ( localize2(4258, "Refactor Preview")),
296
296
  when: BulkEditPreviewContribution.ctxEnabled,
297
297
  ctorDescriptor: ( new SyncDescriptor(BulkEditPane)),
298
298
  containerIcon: refactorPreviewViewIcon,
@@ -24,7 +24,7 @@ import { StorageScope, StorageTarget } from '@codingame/monaco-vscode-api/vscode
24
24
  import { IStorageService } from '@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage.service';
25
25
  import { defaultButtonStyles } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/browser/defaultStyles';
26
26
  import { IThemeService } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/themeService.service';
27
- import { ResourceLabels } from '@codingame/monaco-vscode-12c5f9eb-72d3-57ca-babd-5bef7aa9de3b-common/vscode/vs/workbench/browser/labels';
27
+ import { ResourceLabels } from '@codingame/monaco-vscode-bed2b49f-41ae-5ed2-b61a-1105500a3f8a-common/vscode/vs/workbench/browser/labels';
28
28
  import { ViewPane } from '@codingame/monaco-vscode-65619f8f-0eab-5d8b-855a-43b6353fe527-common/vscode/vs/workbench/browser/parts/views/viewPane';
29
29
  import { IViewDescriptorService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/views.service';
30
30
  import { BulkFileOperationType, BulkEditPreviewProvider, BulkFileOperations } from './bulkEditPreview.js';
@@ -139,15 +139,15 @@ let BulkEditPane = class BulkEditPane extends ViewPane {
139
139
  const buttonBar = ( new ButtonBar(buttonsContainer));
140
140
  this._disposables.add(buttonBar);
141
141
  const btnConfirm = buttonBar.addButton({ supportIcons: true, ...defaultButtonStyles });
142
- btnConfirm.label = ( localize(4230, 'Apply'));
142
+ btnConfirm.label = ( localize(4259, 'Apply'));
143
143
  btnConfirm.onDidClick(() => this.accept(), this, this._disposables);
144
144
  const btnCancel = buttonBar.addButton({ ...defaultButtonStyles, secondary: true });
145
- btnCancel.label = ( localize(4231, 'Discard'));
145
+ btnCancel.label = ( localize(4260, 'Discard'));
146
146
  btnCancel.onDidClick(() => this.discard(), this, this._disposables);
147
147
  this._message = document.createElement('span');
148
148
  this._message.className = 'message';
149
149
  this._message.innerText = ( localize(
150
- 4232,
150
+ 4261,
151
151
  "Invoke a code action, like rename, to see a preview of its changes here."
152
152
  ));
153
153
  parent.appendChild(this._message);
@@ -220,14 +220,14 @@ let BulkEditPane = class BulkEditPane extends ViewPane {
220
220
  let message;
221
221
  if (conflicts.length === 1) {
222
222
  message = ( localize(
223
- 4233,
223
+ 4262,
224
224
  "Cannot apply refactoring because '{0}' has changed in the meantime.",
225
225
  this._labelService.getUriLabel(conflicts[0], { relative: true })
226
226
  ));
227
227
  }
228
228
  else {
229
229
  message = ( localize(
230
- 4234,
230
+ 4263,
231
231
  "Cannot apply refactoring because {0} other files have changed in the meantime.",
232
232
  conflicts.length
233
233
  ));
@@ -103,7 +103,7 @@ class BulkFileOperation {
103
103
  }
104
104
  class BulkCategory {
105
105
  static { this._defaultMetadata = ( Object.freeze({
106
- label: ( localize(4235, "Other")),
106
+ label: ( localize(4264, "Other")),
107
107
  icon: Codicon.symbolFile,
108
108
  needsConfirmation: false
109
109
  })); }
@@ -1,7 +1,7 @@
1
1
  import { IAsyncDataSource, ITreeRenderer, ITreeNode, ITreeSorter } from "@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/tree/tree";
2
2
  import { ITextModelService } from "@codingame/monaco-vscode-api/vscode/vs/editor/common/services/resolverService.service";
3
3
  import { FuzzyScore } from "@codingame/monaco-vscode-api/vscode/vs/base/common/filters";
4
- import { ResourceLabels } from "@codingame/monaco-vscode-12c5f9eb-72d3-57ca-babd-5bef7aa9de3b-common/vscode/vs/workbench/browser/labels";
4
+ import { ResourceLabels } from "@codingame/monaco-vscode-bed2b49f-41ae-5ed2-b61a-1105500a3f8a-common/vscode/vs/workbench/browser/labels";
5
5
  import { IIdentityProvider, IListVirtualDelegate, IKeyboardNavigationLabelProvider } from "@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/list/list";
6
6
  import { BulkFileOperations, BulkFileOperation, BulkTextEdit, BulkCategory } from "./bulkEditPreview.js";
7
7
  import { ILabelService } from "@codingame/monaco-vscode-api/vscode/vs/platform/label/common/label.service";
@@ -240,7 +240,7 @@ let BulkEditAccessibilityProvider = class BulkEditAccessibilityProvider {
240
240
  this._labelService = _labelService;
241
241
  }
242
242
  getWidgetAriaLabel() {
243
- return localize(4236, "Bulk Edit");
243
+ return localize(4265, "Bulk Edit");
244
244
  }
245
245
  getRole(_element) {
246
246
  return 'checkbox';
@@ -250,7 +250,7 @@ let BulkEditAccessibilityProvider = class BulkEditAccessibilityProvider {
250
250
  if (element.edit.textEdits.length > 0) {
251
251
  if (element.edit.type & BulkFileOperationType.Rename && element.edit.newUri) {
252
252
  return localize(
253
- 4237,
253
+ 4266,
254
254
  "Renaming {0} to {1}, also making text edits",
255
255
  this._labelService.getUriLabel(element.edit.uri, { relative: true }),
256
256
  this._labelService.getUriLabel(element.edit.newUri, { relative: true })
@@ -258,21 +258,21 @@ let BulkEditAccessibilityProvider = class BulkEditAccessibilityProvider {
258
258
  }
259
259
  else if (element.edit.type & BulkFileOperationType.Create) {
260
260
  return localize(
261
- 4238,
261
+ 4267,
262
262
  "Creating {0}, also making text edits",
263
263
  this._labelService.getUriLabel(element.edit.uri, { relative: true })
264
264
  );
265
265
  }
266
266
  else if (element.edit.type & BulkFileOperationType.Delete) {
267
267
  return localize(
268
- 4239,
268
+ 4268,
269
269
  "Deleting {0}, also making text edits",
270
270
  this._labelService.getUriLabel(element.edit.uri, { relative: true })
271
271
  );
272
272
  }
273
273
  else {
274
274
  return localize(
275
- 4240,
275
+ 4269,
276
276
  "{0}, making text edits",
277
277
  this._labelService.getUriLabel(element.edit.uri, { relative: true })
278
278
  );
@@ -281,7 +281,7 @@ let BulkEditAccessibilityProvider = class BulkEditAccessibilityProvider {
281
281
  else {
282
282
  if (element.edit.type & BulkFileOperationType.Rename && element.edit.newUri) {
283
283
  return localize(
284
- 4241,
284
+ 4270,
285
285
  "Renaming {0} to {1}",
286
286
  this._labelService.getUriLabel(element.edit.uri, { relative: true }),
287
287
  this._labelService.getUriLabel(element.edit.newUri, { relative: true })
@@ -289,14 +289,14 @@ let BulkEditAccessibilityProvider = class BulkEditAccessibilityProvider {
289
289
  }
290
290
  else if (element.edit.type & BulkFileOperationType.Create) {
291
291
  return localize(
292
- 4242,
292
+ 4271,
293
293
  "Creating {0}",
294
294
  this._labelService.getUriLabel(element.edit.uri, { relative: true })
295
295
  );
296
296
  }
297
297
  else if (element.edit.type & BulkFileOperationType.Delete) {
298
298
  return localize(
299
- 4243,
299
+ 4272,
300
300
  "Deleting {0}",
301
301
  this._labelService.getUriLabel(element.edit.uri, { relative: true })
302
302
  );
@@ -306,7 +306,7 @@ let BulkEditAccessibilityProvider = class BulkEditAccessibilityProvider {
306
306
  if (element instanceof TextEditElement) {
307
307
  if (element.selecting.length > 0 && element.inserting.length > 0) {
308
308
  return localize(
309
- 4244,
309
+ 4273,
310
310
  "line {0}, replacing {1} with {2}",
311
311
  element.edit.textEdit.textEdit.range.startLineNumber,
312
312
  element.selecting,
@@ -315,7 +315,7 @@ let BulkEditAccessibilityProvider = class BulkEditAccessibilityProvider {
315
315
  }
316
316
  else if (element.selecting.length > 0 && element.inserting.length === 0) {
317
317
  return localize(
318
- 4245,
318
+ 4274,
319
319
  "line {0}, removing {1}",
320
320
  element.edit.textEdit.textEdit.range.startLineNumber,
321
321
  element.selecting
@@ -323,7 +323,7 @@ let BulkEditAccessibilityProvider = class BulkEditAccessibilityProvider {
323
323
  }
324
324
  else if (element.selecting.length === 0 && element.inserting.length > 0) {
325
325
  return localize(
326
- 4246,
326
+ 4275,
327
327
  "line {0}, inserting {1}",
328
328
  element.edit.textEdit.textEdit.range.startLineNumber,
329
329
  element.selecting
@@ -429,7 +429,7 @@ let FileElementTemplate = class FileElementTemplate {
429
429
  this._label.setResource({
430
430
  resource: element.edit.uri,
431
431
  name: ( localize(
432
- 4247,
432
+ 4276,
433
433
  "{0} → {1}",
434
434
  this._labelService.getUriLabel(element.edit.uri, { relative: true }),
435
435
  this._labelService.getUriLabel(element.edit.newUri, { relative: true })
@@ -437,7 +437,7 @@ let FileElementTemplate = class FileElementTemplate {
437
437
  }, {
438
438
  fileDecorations: { colors: true, badges: false }
439
439
  });
440
- this._details.innerText = ( localize(4248, "(renaming)"));
440
+ this._details.innerText = ( localize(4277, "(renaming)"));
441
441
  }
442
442
  else {
443
443
  const options = {
@@ -447,10 +447,10 @@ let FileElementTemplate = class FileElementTemplate {
447
447
  extraClasses: []
448
448
  };
449
449
  if (element.edit.type & BulkFileOperationType.Create) {
450
- this._details.innerText = ( localize(4249, "(creating)"));
450
+ this._details.innerText = ( localize(4278, "(creating)"));
451
451
  }
452
452
  else if (element.edit.type & BulkFileOperationType.Delete) {
453
- this._details.innerText = ( localize(4250, "(deleting)"));
453
+ this._details.innerText = ( localize(4279, "(deleting)"));
454
454
  options.extraClasses.push('delete');
455
455
  }
456
456
  else {
@@ -527,7 +527,7 @@ let TextEditElementTemplate = class TextEditElementTemplate {
527
527
  let title;
528
528
  const { metadata } = element.edit.textEdit;
529
529
  if (metadata && metadata.description) {
530
- title = ( localize(4251, "{0} - {1}", metadata.label, metadata.description));
530
+ title = ( localize(4280, "{0} - {1}", metadata.label, metadata.description));
531
531
  }
532
532
  else if (metadata) {
533
533
  title = metadata.label;