@codingame/monaco-vscode-user-data-profile-service-override 13.0.0 → 13.1.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 (21) hide show
  1. package/index.js +1 -1
  2. package/package.json +14 -22
  3. package/vscode/src/vs/platform/userDataProfile/browser/userDataProfile.js +1 -1
  4. package/vscode/src/vs/workbench/contrib/userDataProfile/browser/userDataProfile.d.ts +1 -1
  5. package/vscode/src/vs/workbench/contrib/userDataProfile/browser/userDataProfile.js +24 -24
  6. package/vscode/src/vs/workbench/contrib/userDataProfile/browser/userDataProfileActions.js +3 -3
  7. package/vscode/src/vs/workbench/contrib/userDataProfile/browser/userDataProfilesEditor.js +78 -78
  8. package/vscode/src/vs/workbench/contrib/userDataProfile/browser/userDataProfilesEditorModel.d.ts +1 -1
  9. package/vscode/src/vs/workbench/contrib/userDataProfile/browser/userDataProfilesEditorModel.js +28 -28
  10. package/vscode/src/vs/workbench/services/userDataProfile/browser/extensionsResource.js +5 -5
  11. package/vscode/src/vs/workbench/services/userDataProfile/browser/globalStateResource.js +1 -1
  12. package/vscode/src/vs/workbench/services/userDataProfile/browser/keybindingsResource.js +1 -1
  13. package/vscode/src/vs/workbench/services/userDataProfile/browser/settingsResource.js +1 -1
  14. package/vscode/src/vs/workbench/services/userDataProfile/browser/snippetsResource.js +2 -2
  15. package/vscode/src/vs/workbench/services/userDataProfile/browser/tasksResource.js +1 -1
  16. package/vscode/src/vs/workbench/services/userDataProfile/browser/userDataProfileImportExportService.js +40 -40
  17. package/vscode/src/vs/workbench/services/userDataProfile/browser/userDataProfileInit.d.ts +1 -1
  18. package/vscode/src/vs/workbench/services/userDataProfile/browser/userDataProfileInit.js +1 -1
  19. package/vscode/src/vs/workbench/services/userDataProfile/browser/userDataProfileManagement.js +8 -8
  20. package/vscode/src/vs/workbench/services/userDataSync/browser/userDataSyncInit.d.ts +1 -1
  21. package/vscode/src/vs/workbench/services/userDataSync/browser/userDataSyncInit.js +1 -1
@@ -73,9 +73,9 @@ import { DropdownMenuActionViewItem } from '@codingame/monaco-vscode-api/vscode/
73
73
  import { Orientation } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/sash/sash';
74
74
 
75
75
  var UserDataProfilesEditor_1, ExistingProfileResourceTreeRenderer_1, NewProfileResourceTreeRenderer_1, ProfileResourceChildTreeItemRenderer_1, WorkspaceUriHostColumnRenderer_1, WorkspaceUriPathColumnRenderer_1, WorkspaceUriActionsColumnRenderer_1, UserDataProfilesEditorInput_1;
76
- const editIcon = registerIcon('profiles-editor-edit-folder', Codicon.edit, ( localize(10503, 'Icon for the edit folder icon in the profiles editor.')));
77
- const removeIcon = registerIcon('profiles-editor-remove-folder', Codicon.close, ( localize(10504, 'Icon for the remove folder icon in the profiles editor.')));
78
- const profilesSashBorder = registerColor('profiles.sashBorder', PANEL_BORDER, ( localize(10505, "The color of the Profiles editor splitview sash border.")));
76
+ const editIcon = registerIcon('profiles-editor-edit-folder', Codicon.edit, ( localize(10521, 'Icon for the edit folder icon in the profiles editor.')));
77
+ const removeIcon = registerIcon('profiles-editor-remove-folder', Codicon.close, ( localize(10522, 'Icon for the remove folder icon in the profiles editor.')));
78
+ const profilesSashBorder = registerColor('profiles.sashBorder', PANEL_BORDER, ( localize(10523, "The color of the Profiles editor splitview sash border.")));
79
79
  const listStyles = getListStyles({
80
80
  listActiveSelectionBackground: editorBackground,
81
81
  listActiveSelectionForeground: foreground,
@@ -171,7 +171,7 @@ let UserDataProfilesEditor = class UserDataProfilesEditor extends EditorPane {
171
171
  return profileElement?.name ?? '';
172
172
  },
173
173
  getWidgetAriaLabel() {
174
- return localize(10506, "Profiles");
174
+ return localize(10524, "Profiles");
175
175
  }
176
176
  },
177
177
  openOnSingleClick: true,
@@ -192,10 +192,10 @@ let UserDataProfilesEditor = class UserDataProfilesEditor extends EditorPane {
192
192
  getActions: () => {
193
193
  const actions = [];
194
194
  if (this.templates.length) {
195
- actions.push(( new SubmenuAction('from.template', ( localize(10507, "From Template")), this.getCreateFromTemplateActions())));
195
+ actions.push(( new SubmenuAction('from.template', ( localize(10525, "From Template")), this.getCreateFromTemplateActions())));
196
196
  actions.push(( new Separator()));
197
197
  }
198
- actions.push(( new Action('importProfile', ( localize(10508, "Import Profile...")), undefined, true, () => this.importProfile())));
198
+ actions.push(( new Action('importProfile', ( localize(10526, "Import Profile...")), undefined, true, () => this.importProfile())));
199
199
  return actions;
200
200
  }
201
201
  },
@@ -204,7 +204,7 @@ let UserDataProfilesEditor = class UserDataProfilesEditor extends EditorPane {
204
204
  supportIcons: true,
205
205
  ...defaultButtonStyles
206
206
  })));
207
- button.label = ( localize(10509, "New Profile"));
207
+ button.label = ( localize(10527, "New Profile"));
208
208
  this._register(button.onDidClick(e => this.createNewProfile()));
209
209
  }
210
210
  getCreateFromTemplateActions() {
@@ -249,13 +249,13 @@ let UserDataProfilesEditor = class UserDataProfilesEditor extends EditorPane {
249
249
  }
250
250
  getTreeContextMenuActions() {
251
251
  const actions = [];
252
- actions.push(( new Action('newProfile', ( localize(10509, "New Profile")), undefined, true, () => this.createNewProfile())));
252
+ actions.push(( new Action('newProfile', ( localize(10527, "New Profile")), undefined, true, () => this.createNewProfile())));
253
253
  const templateActions = this.getCreateFromTemplateActions();
254
254
  if (templateActions.length) {
255
- actions.push(( new SubmenuAction('from.template', ( localize(10510, "New Profile From Template")), templateActions)));
255
+ actions.push(( new SubmenuAction('from.template', ( localize(10528, "New Profile From Template")), templateActions)));
256
256
  }
257
257
  actions.push(( new Separator()));
258
- actions.push(( new Action('importProfile', ( localize(10508, "Import Profile...")), undefined, true, () => this.importProfile())));
258
+ actions.push(( new Action('importProfile', ( localize(10526, "Import Profile...")), undefined, true, () => this.importProfile())));
259
259
  return actions;
260
260
  }
261
261
  async importProfile() {
@@ -264,13 +264,13 @@ let UserDataProfilesEditor = class UserDataProfilesEditor extends EditorPane {
264
264
  const updateQuickPickItems = (value) => {
265
265
  const quickPickItems = [];
266
266
  if (value) {
267
- quickPickItems.push({ label: quickPick.value, description: ( localize(10511, "Import from URL")) });
267
+ quickPickItems.push({ label: quickPick.value, description: ( localize(10529, "Import from URL")) });
268
268
  }
269
- quickPickItems.push({ label: ( localize(10512, "Select File...")) });
269
+ quickPickItems.push({ label: ( localize(10530, "Select File...")) });
270
270
  quickPick.items = quickPickItems;
271
271
  };
272
- quickPick.title = ( localize(10513, "Import from Profile Template..."));
273
- quickPick.placeholder = ( localize(10514, "Provide Profile Template URL"));
272
+ quickPick.title = ( localize(10531, "Import from Profile Template..."));
273
+ quickPick.placeholder = ( localize(10532, "Provide Profile Template URL"));
274
274
  quickPick.ignoreFocusOut = true;
275
275
  disposables.add(quickPick.onDidChangeValue(updateQuickPickItems));
276
276
  updateQuickPickItems();
@@ -305,7 +305,7 @@ let UserDataProfilesEditor = class UserDataProfilesEditor extends EditorPane {
305
305
  canSelectFiles: true,
306
306
  canSelectMany: false,
307
307
  filters: PROFILE_FILTER,
308
- title: ( localize(10515, "Select Profile Template File")),
308
+ title: ( localize(10533, "Select Profile Template File")),
309
309
  });
310
310
  if (!profileLocation) {
311
311
  return null;
@@ -382,7 +382,7 @@ let ProfileElementRenderer = class ProfileElementRenderer {
382
382
  const label = append(container, $('.profile-list-item-label'));
383
383
  const dirty = append(container, $(`span${ThemeIcon.asCSSSelector(Codicon.circleFilled)}`));
384
384
  const description = append(container, $('.profile-list-item-description'));
385
- append(description, $(`span${ThemeIcon.asCSSSelector(Codicon.check)}`), $('span', undefined, ( localize(10516, "Active"))));
385
+ append(description, $(`span${ThemeIcon.asCSSSelector(Codicon.check)}`), $('span', undefined, ( localize(10534, "Active"))));
386
386
  const actionsContainer = append(container, $('.profile-tree-item-actions-container'));
387
387
  const actionBar = disposables.add(this.instantiationService.createInstance(WorkbenchToolBar, actionsContainer, {
388
388
  hoverDelegate: disposables.add(createInstantHoverDelegate()),
@@ -722,15 +722,15 @@ class AbstractProfileResourceTreeRenderer extends Disposable {
722
722
  getResourceTypeTitle(resourceType) {
723
723
  switch (resourceType) {
724
724
  case ProfileResourceType.Settings:
725
- return localize(10517, "Settings");
725
+ return localize(10535, "Settings");
726
726
  case ProfileResourceType.Keybindings:
727
- return localize(10518, "Keyboard Shortcuts");
727
+ return localize(10536, "Keyboard Shortcuts");
728
728
  case ProfileResourceType.Snippets:
729
- return localize(10519, "Snippets");
729
+ return localize(10537, "Snippets");
730
730
  case ProfileResourceType.Tasks:
731
- return localize(10520, "Tasks");
731
+ return localize(10538, "Tasks");
732
732
  case ProfileResourceType.Extensions:
733
- return localize(10521, "Extensions");
733
+ return localize(10539, "Extensions");
734
734
  }
735
735
  return '';
736
736
  }
@@ -759,18 +759,18 @@ let ProfileNameRenderer = class ProfileNameRenderer extends ProfilePropertyRende
759
759
  const elementDisposables = disposables.add(( new DisposableStore()));
760
760
  let profileElement;
761
761
  const nameContainer = append(parent, $('.profile-row-container'));
762
- append(nameContainer, $('.profile-label-element', undefined, ( localize(10522, "Name"))));
762
+ append(nameContainer, $('.profile-label-element', undefined, ( localize(10540, "Name"))));
763
763
  const nameInput = disposables.add(( new InputBox(nameContainer, this.contextViewService, {
764
764
  inputBoxStyles: getInputBoxStyle({
765
765
  inputBorder: settingsTextInputBorder
766
766
  }),
767
- ariaLabel: ( localize(10523, "Profile Name")),
768
- placeholder: ( localize(10523, "Profile Name")),
767
+ ariaLabel: ( localize(10541, "Profile Name")),
768
+ placeholder: ( localize(10541, "Profile Name")),
769
769
  validationOptions: {
770
770
  validation: (value) => {
771
771
  if (!value) {
772
772
  return {
773
- content: ( localize(10524, "Profile name is required and must be a non-empty value.")),
773
+ content: ( localize(10542, "Profile name is required and must be a non-empty value.")),
774
774
  type: MessageType.WARNING
775
775
  };
776
776
  }
@@ -784,7 +784,7 @@ let ProfileNameRenderer = class ProfileNameRenderer extends ProfilePropertyRende
784
784
  value = value.trim();
785
785
  if (initialName !== value && ( this.userDataProfilesService.profiles.some(p => !p.isTransient && p.name === value))) {
786
786
  return {
787
- content: ( localize(10525, "Profile with name {0} already exists.", value)),
787
+ content: ( localize(10543, "Profile with name {0} already exists.", value)),
788
788
  type: MessageType.WARNING
789
789
  };
790
790
  }
@@ -814,10 +814,10 @@ let ProfileNameRenderer = class ProfileNameRenderer extends ProfilePropertyRende
814
814
  nameInput.enable();
815
815
  }
816
816
  if (isDefaultProfile) {
817
- nameInput.setTooltip(( localize(10526, "Name cannot be changed for the default profile")));
817
+ nameInput.setTooltip(( localize(10544, "Name cannot be changed for the default profile")));
818
818
  }
819
819
  else {
820
- nameInput.setTooltip(( localize(10523, "Profile Name")));
820
+ nameInput.setTooltip(( localize(10541, "Profile Name")));
821
821
  }
822
822
  };
823
823
  return {
@@ -855,9 +855,9 @@ let ProfileIconRenderer = class ProfileIconRenderer extends ProfilePropertyRende
855
855
  const elementDisposables = disposables.add(( new DisposableStore()));
856
856
  let profileElement;
857
857
  const iconContainer = append(parent, $('.profile-row-container'));
858
- append(iconContainer, $('.profile-label-element', undefined, ( localize(10527, "Icon"))));
858
+ append(iconContainer, $('.profile-label-element', undefined, ( localize(10545, "Icon"))));
859
859
  const iconValueContainer = append(iconContainer, $('.profile-icon-container'));
860
- const iconElement = append(iconValueContainer, $(`${ThemeIcon.asCSSSelector(DEFAULT_ICON)}`, { 'tabindex': '0', 'role': 'button', 'aria-label': ( localize(10528, "Profile Icon")) }));
860
+ const iconElement = append(iconValueContainer, $(`${ThemeIcon.asCSSSelector(DEFAULT_ICON)}`, { 'tabindex': '0', 'role': 'button', 'aria-label': ( localize(10546, "Profile Icon")) }));
861
861
  const iconHover = disposables.add(this.hoverService.setupManagedHover(this.hoverDelegate, iconElement, ''));
862
862
  const iconSelectBox = disposables.add(this.instantiationService.createInstance(WorkbenchIconSelectBox, { icons: ICONS, inputBoxStyles: defaultInputBoxStyles }));
863
863
  let hoverWidget;
@@ -916,14 +916,14 @@ let ProfileIconRenderer = class ProfileIconRenderer extends ProfilePropertyRende
916
916
  profileElement.root.icon = selectedIcon.id;
917
917
  }
918
918
  }));
919
- append(iconValueContainer, $('.profile-description-element', undefined, ( localize(10529, "Profile icon to be shown in the activity bar"))));
919
+ append(iconValueContainer, $('.profile-description-element', undefined, ( localize(10547, "Profile icon to be shown in the activity bar"))));
920
920
  const renderIcon = (profileElement) => {
921
921
  if (profileElement?.root instanceof UserDataProfileElement && profileElement.root.profile.isDefault) {
922
922
  iconValueContainer.classList.add('disabled');
923
- iconHover.update(( localize(10530, "Icon cannot be changed for the default profile")));
923
+ iconHover.update(( localize(10548, "Icon cannot be changed for the default profile")));
924
924
  }
925
925
  else {
926
- iconHover.update(( localize(10531, "Click to change icon")));
926
+ iconHover.update(( localize(10549, "Click to change icon")));
927
927
  iconValueContainer.classList.remove('disabled');
928
928
  }
929
929
  if (profileElement.root.icon) {
@@ -963,9 +963,9 @@ let UseForCurrentWindowPropertyRenderer = class UseForCurrentWindowPropertyRende
963
963
  const elementDisposables = disposables.add(( new DisposableStore()));
964
964
  let profileElement;
965
965
  const useForCurrentWindowContainer = append(parent, $('.profile-row-container'));
966
- append(useForCurrentWindowContainer, $('.profile-label-element', undefined, ( localize(10532, "Use for Current Window"))));
966
+ append(useForCurrentWindowContainer, $('.profile-label-element', undefined, ( localize(10550, "Use for Current Window"))));
967
967
  const useForCurrentWindowValueContainer = append(useForCurrentWindowContainer, $('.profile-use-for-current-container'));
968
- const useForCurrentWindowTitle = ( localize(10533, "Use this profile for the current window"));
968
+ const useForCurrentWindowTitle = ( localize(10551, "Use this profile for the current window"));
969
969
  const useForCurrentWindowCheckbox = disposables.add(( new Checkbox(useForCurrentWindowTitle, false, defaultCheckboxStyles)));
970
970
  append(useForCurrentWindowValueContainer, useForCurrentWindowCheckbox.domNode);
971
971
  const useForCurrentWindowLabel = append(useForCurrentWindowValueContainer, $('.profile-description-element', undefined, useForCurrentWindowTitle));
@@ -1015,9 +1015,9 @@ class UseAsDefaultProfileRenderer extends ProfilePropertyRenderer {
1015
1015
  const elementDisposables = disposables.add(( new DisposableStore()));
1016
1016
  let profileElement;
1017
1017
  const useAsDefaultProfileContainer = append(parent, $('.profile-row-container'));
1018
- append(useAsDefaultProfileContainer, $('.profile-label-element', undefined, ( localize(10534, "Use for New Windows"))));
1018
+ append(useAsDefaultProfileContainer, $('.profile-label-element', undefined, ( localize(10552, "Use for New Windows"))));
1019
1019
  const useAsDefaultProfileValueContainer = append(useAsDefaultProfileContainer, $('.profile-use-as-default-container'));
1020
- const useAsDefaultProfileTitle = ( localize(10535, "Use this profile as the default for new windows"));
1020
+ const useAsDefaultProfileTitle = ( localize(10553, "Use this profile as the default for new windows"));
1021
1021
  const useAsDefaultProfileCheckbox = disposables.add(( new Checkbox(useAsDefaultProfileTitle, false, defaultCheckboxStyles)));
1022
1022
  append(useAsDefaultProfileValueContainer, useAsDefaultProfileCheckbox.domNode);
1023
1023
  const useAsDefaultProfileLabel = append(useAsDefaultProfileValueContainer, $('.profile-description-element', undefined, useAsDefaultProfileTitle));
@@ -1064,11 +1064,11 @@ let CopyFromProfileRenderer = class CopyFromProfileRenderer extends ProfilePrope
1064
1064
  const elementDisposables = disposables.add(( new DisposableStore()));
1065
1065
  let profileElement;
1066
1066
  const copyFromContainer = append(parent, $('.profile-row-container.profile-copy-from-container'));
1067
- append(copyFromContainer, $('.profile-label-element', undefined, ( localize(10536, "Copy from"))));
1068
- append(copyFromContainer, $('.profile-description-element', undefined, ( localize(10537, "Select the profile source from which you want to copy contents"))));
1067
+ append(copyFromContainer, $('.profile-label-element', undefined, ( localize(10554, "Copy from"))));
1068
+ append(copyFromContainer, $('.profile-description-element', undefined, ( localize(10555, "Select the profile source from which you want to copy contents"))));
1069
1069
  const copyFromSelectBox = disposables.add(this.instantiationService.createInstance(SelectBox, [], 0, this.contextViewService, defaultSelectBoxStyles, {
1070
1070
  useCustomDrawn: true,
1071
- ariaLabel: ( localize(10538, "Copy profile from")),
1071
+ ariaLabel: ( localize(10556, "Copy profile from")),
1072
1072
  }));
1073
1073
  copyFromSelectBox.render(append(copyFromContainer, $('.profile-select-container')));
1074
1074
  const render = (profileElement, copyFromOptions) => {
@@ -1112,19 +1112,19 @@ let CopyFromProfileRenderer = class CopyFromProfileRenderer extends ProfilePrope
1112
1112
  getCopyFromOptions(profileElement) {
1113
1113
  const separator = { text: '\u2500\u2500\u2500\u2500\u2500\u2500', isDisabled: true };
1114
1114
  const copyFromOptions = [];
1115
- copyFromOptions.push({ text: ( localize(10539, "None")) });
1115
+ copyFromOptions.push({ text: ( localize(10557, "None")) });
1116
1116
  for (const [copyFromTemplate, name] of profileElement.copyFromTemplates) {
1117
1117
  if (!( this.templates.some(template => this.uriIdentityService.extUri.isEqual(( URI.parse(template.url)), copyFromTemplate)))) {
1118
1118
  copyFromOptions.push({ text: `${name} (${basename(copyFromTemplate)})`, id: ( copyFromTemplate.toString()), source: copyFromTemplate });
1119
1119
  }
1120
1120
  }
1121
1121
  if (this.templates.length) {
1122
- copyFromOptions.push({ ...separator, decoratorRight: ( localize(10540, "Profile Templates")) });
1122
+ copyFromOptions.push({ ...separator, decoratorRight: ( localize(10558, "Profile Templates")) });
1123
1123
  for (const template of this.templates) {
1124
1124
  copyFromOptions.push({ text: template.name, id: template.url, source: ( URI.parse(template.url)) });
1125
1125
  }
1126
1126
  }
1127
- copyFromOptions.push({ ...separator, decoratorRight: ( localize(10541, "Existing Profiles")) });
1127
+ copyFromOptions.push({ ...separator, decoratorRight: ( localize(10559, "Existing Profiles")) });
1128
1128
  for (const profile of this.userDataProfilesService.profiles) {
1129
1129
  if (!profile.isTransient) {
1130
1130
  copyFromOptions.push({ text: profile.name, id: profile.id, source: profile });
@@ -1156,11 +1156,11 @@ let ContentsProfileRenderer = class ContentsProfileRenderer extends ProfilePrope
1156
1156
  const elementDisposables = disposables.add(( new DisposableStore()));
1157
1157
  let profileElement;
1158
1158
  const configureRowContainer = append(parent, $('.profile-row-container'));
1159
- append(configureRowContainer, $('.profile-label-element', undefined, ( localize(10542, "Contents"))));
1159
+ append(configureRowContainer, $('.profile-label-element', undefined, ( localize(10560, "Contents"))));
1160
1160
  const contentsDescriptionElement = append(configureRowContainer, $('.profile-description-element'));
1161
1161
  const contentsTreeHeader = append(configureRowContainer, $('.profile-content-tree-header'));
1162
- const optionsLabel = $('.options-header', undefined, $('span', undefined, ( localize(10543, "Source"))));
1163
- append(contentsTreeHeader, $(''), $('', undefined, ( localize(10542, "Contents"))), optionsLabel, $(''));
1162
+ const optionsLabel = $('.options-header', undefined, $('span', undefined, ( localize(10561, "Source"))));
1163
+ append(contentsTreeHeader, $(''), $('', undefined, ( localize(10560, "Contents"))), optionsLabel, $(''));
1164
1164
  const delegate = ( new ProfileContentTreeElementDelegate());
1165
1165
  const profilesContentTree = this.profilesContentTree = disposables.add(this.instantiationService.createInstance((WorkbenchAsyncDataTree), 'ProfileEditor-ContentsTree', append(configureRowContainer, $('.profile-content-tree.file-icon-themable-tree.show-file-icons')), delegate, [
1166
1166
  this.instantiationService.createInstance(ExistingProfileResourceTreeRenderer),
@@ -1232,27 +1232,27 @@ let ContentsProfileRenderer = class ContentsProfileRenderer extends ProfilePrope
1232
1232
  clearNode(contentsDescriptionElement);
1233
1233
  const markdown = ( new MarkdownString());
1234
1234
  if (element.root instanceof UserDataProfileElement && element.root.profile.isDefault) {
1235
- markdown.appendMarkdown(( localize(10544, "Browse contents of this profile\n")));
1235
+ markdown.appendMarkdown(( localize(10562, "Browse contents of this profile\n")));
1236
1236
  }
1237
1237
  else {
1238
- markdown.appendMarkdown(( localize(10545, "Configure source of contents for this profile\n")));
1238
+ markdown.appendMarkdown(( localize(10563, "Configure source of contents for this profile\n")));
1239
1239
  if (element.root instanceof NewProfileElement) {
1240
1240
  const copyFromName = element.root.getCopyFromName();
1241
1241
  const optionName = copyFromName === this.userDataProfilesService.defaultProfile.name
1242
- ? ( localize(10546, "{0} (Copy)", copyFromName))
1242
+ ? ( localize(10564, "{0} (Copy)", copyFromName))
1243
1243
  : copyFromName;
1244
1244
  if (optionName) {
1245
1245
  markdown
1246
1246
  .appendMarkdown(( localize(
1247
- 10547,
1247
+ 10565,
1248
1248
  "- *{0}:* Copy contents from the {1} profile\n",
1249
1249
  optionName,
1250
1250
  copyFromName
1251
1251
  )));
1252
1252
  }
1253
1253
  markdown
1254
- .appendMarkdown(( localize(10548, "- *Default:* Use contents from the Default profile\n")))
1255
- .appendMarkdown(( localize(10549, "- *None:* Create empty contents\n")));
1254
+ .appendMarkdown(( localize(10566, "- *Default:* Use contents from the Default profile\n")))
1255
+ .appendMarkdown(( localize(10567, "- *None:* Create empty contents\n")));
1256
1256
  }
1257
1257
  }
1258
1258
  append(contentsDescriptionElement, elementDisposables.add(renderMarkdown(markdown)).element);
@@ -1313,7 +1313,7 @@ let ProfileWorkspacesRenderer = class ProfileWorkspacesRenderer extends ProfileP
1313
1313
  const elementDisposables = disposables.add(( new DisposableStore()));
1314
1314
  let profileElement;
1315
1315
  const profileWorkspacesRowContainer = append(parent, $('.profile-row-container'));
1316
- append(profileWorkspacesRowContainer, $('.profile-label-element', undefined, ( localize(10550, "Folders & Workspaces"))));
1316
+ append(profileWorkspacesRowContainer, $('.profile-label-element', undefined, ( localize(10568, "Folders & Workspaces"))));
1317
1317
  const profileWorkspacesDescriptionElement = append(profileWorkspacesRowContainer, $('.profile-description-element'));
1318
1318
  const workspacesTableContainer = append(profileWorkspacesRowContainer, $('.profile-associations-table'));
1319
1319
  const table = this.workspacesTable = disposables.add(this.instantiationService.createInstance((WorkbenchTable), 'ProfileEditor-AssociationsTable', workspacesTableContainer, new class {
@@ -1332,14 +1332,14 @@ let ProfileWorkspacesRenderer = class ProfileWorkspacesRenderer extends ProfileP
1332
1332
  project(row) { return row; },
1333
1333
  },
1334
1334
  {
1335
- label: ( localize(10551, "Host")),
1335
+ label: ( localize(10569, "Host")),
1336
1336
  tooltip: '',
1337
1337
  weight: 2,
1338
1338
  templateId: WorkspaceUriHostColumnRenderer.TEMPLATE_ID,
1339
1339
  project(row) { return row; },
1340
1340
  },
1341
1341
  {
1342
- label: ( localize(10552, "Path")),
1342
+ label: ( localize(10570, "Path")),
1343
1343
  tooltip: '',
1344
1344
  weight: 7,
1345
1345
  templateId: WorkspaceUriPathColumnRenderer.TEMPLATE_ID,
@@ -1368,16 +1368,16 @@ let ProfileWorkspacesRenderer = class ProfileWorkspacesRenderer extends ProfileP
1368
1368
  getAriaLabel: (item) => {
1369
1369
  const hostLabel = getHostLabel(this.labelService, item.workspace);
1370
1370
  if (hostLabel === undefined || hostLabel.length === 0) {
1371
- return localize(10553, "{0}, trusted", this.labelService.getUriLabel(item.workspace));
1371
+ return localize(10571, "{0}, trusted", this.labelService.getUriLabel(item.workspace));
1372
1372
  }
1373
1373
  return localize(
1374
- 10554,
1374
+ 10572,
1375
1375
  "{0} on {1}, trusted",
1376
1376
  this.labelService.getUriLabel(item.workspace),
1377
1377
  hostLabel
1378
1378
  );
1379
1379
  },
1380
- getWidgetAriaLabel: () => ( localize(10555, "Trusted Folders & Workspaces"))
1380
+ getWidgetAriaLabel: () => ( localize(10573, "Trusted Folders & Workspaces"))
1381
1381
  },
1382
1382
  identityProvider: {
1383
1383
  getId(element) {
@@ -1394,15 +1394,15 @@ let ProfileWorkspacesRenderer = class ProfileWorkspacesRenderer extends ProfileP
1394
1394
  })));
1395
1395
  const addButtonBarElement = append(profileWorkspacesRowContainer, $('.profile-workspaces-button-container'));
1396
1396
  const buttonBar = disposables.add(( new ButtonBar(addButtonBarElement)));
1397
- const addButton = this._register(buttonBar.addButton({ title: ( localize(10556, "Add Folder")), ...defaultButtonStyles }));
1398
- addButton.label = ( localize(10556, "Add Folder"));
1397
+ const addButton = this._register(buttonBar.addButton({ title: ( localize(10574, "Add Folder")), ...defaultButtonStyles }));
1398
+ addButton.label = ( localize(10574, "Add Folder"));
1399
1399
  disposables.add(addButton.onDidClick(async () => {
1400
1400
  const uris = await this.fileDialogService.showOpenDialog({
1401
1401
  canSelectFiles: false,
1402
1402
  canSelectFolders: true,
1403
1403
  canSelectMany: true,
1404
- openLabel: ( localize(10557, "Add Folder")),
1405
- title: ( localize(10558, "Select Folders To Add"))
1404
+ openLabel: ( localize(10575, "Add Folder")),
1405
+ title: ( localize(10576, "Select Folders To Add"))
1406
1406
  });
1407
1407
  if (uris) {
1408
1408
  if (profileElement?.root instanceof UserDataProfileElement) {
@@ -1417,7 +1417,7 @@ let ProfileWorkspacesRenderer = class ProfileWorkspacesRenderer extends ProfileP
1417
1417
  }));
1418
1418
  const updateTable = () => {
1419
1419
  if (profileElement?.root instanceof UserDataProfileElement && profileElement.root.workspaces?.length) {
1420
- profileWorkspacesDescriptionElement.textContent = ( localize(10559, "Following folders and workspaces are using this profile"));
1420
+ profileWorkspacesDescriptionElement.textContent = ( localize(10577, "Following folders and workspaces are using this profile"));
1421
1421
  workspacesTableContainer.classList.remove('hide');
1422
1422
  table.splice(0, table.length, ( profileElement.root.workspaces
1423
1423
  .map(workspace => ({ workspace, profileElement: profileElement.root })))
@@ -1425,7 +1425,7 @@ let ProfileWorkspacesRenderer = class ProfileWorkspacesRenderer extends ProfileP
1425
1425
  this.layout();
1426
1426
  }
1427
1427
  else {
1428
- profileWorkspacesDescriptionElement.textContent = ( localize(10560, "No folders or workspaces are using this profile"));
1428
+ profileWorkspacesDescriptionElement.textContent = ( localize(10578, "No folders or workspaces are using this profile"));
1429
1429
  workspacesTableContainer.classList.add('hide');
1430
1430
  }
1431
1431
  };
@@ -1499,13 +1499,13 @@ let ExistingProfileResourceTreeRenderer = class ExistingProfileResourceTreeRende
1499
1499
  }
1500
1500
  const updateRadioItems = () => {
1501
1501
  templateData.radio.setItems([{
1502
- text: ( localize(10561, "Default")),
1503
- tooltip: ( localize(10562, "Use {0} from the Default profile", resourceTypeTitle)),
1502
+ text: ( localize(10579, "Default")),
1503
+ tooltip: ( localize(10580, "Use {0} from the Default profile", resourceTypeTitle)),
1504
1504
  isActive: root.getFlag(element.resourceType)
1505
1505
  },
1506
1506
  {
1507
1507
  text: root.name,
1508
- tooltip: ( localize(10563, "Use {0} from the {1} profile", resourceTypeTitle, root.name)),
1508
+ tooltip: ( localize(10581, "Use {0} from the {1} profile", resourceTypeTitle, root.name)),
1509
1509
  isActive: !root.getFlag(element.resourceType)
1510
1510
  }]);
1511
1511
  };
@@ -1573,22 +1573,22 @@ let NewProfileResourceTreeRenderer = class NewProfileResourceTreeRenderer extend
1573
1573
  templateData.label.textContent = resourceTypeTitle;
1574
1574
  const renderRadioItems = () => {
1575
1575
  const options = [{
1576
- text: ( localize(10561, "Default")),
1577
- tooltip: ( localize(10562, "Use {0} from the Default profile", resourceTypeTitle)),
1576
+ text: ( localize(10579, "Default")),
1577
+ tooltip: ( localize(10580, "Use {0} from the Default profile", resourceTypeTitle)),
1578
1578
  },
1579
1579
  {
1580
- text: ( localize(10564, "None")),
1581
- tooltip: ( localize(10565, "Create empty {0}", resourceTypeTitle))
1580
+ text: ( localize(10582, "None")),
1581
+ tooltip: ( localize(10583, "Create empty {0}", resourceTypeTitle))
1582
1582
  }];
1583
1583
  const copyFromName = root.getCopyFromName();
1584
1584
  const name = copyFromName === this.userDataProfilesService.defaultProfile.name
1585
- ? ( localize(10546, "{0} (Copy)", copyFromName))
1585
+ ? ( localize(10564, "{0} (Copy)", copyFromName))
1586
1586
  : copyFromName;
1587
1587
  if (root.copyFrom && name) {
1588
1588
  templateData.radio.setItems([
1589
1589
  {
1590
1590
  text: name,
1591
- tooltip: name ? ( localize(10566, "Copy {0} from the {1} profile", resourceTypeTitle, name)) : ( localize(10567, "Copy")),
1591
+ tooltip: name ? ( localize(10584, "Copy {0} from the {1} profile", resourceTypeTitle, name)) : ( localize(10585, "Copy")),
1592
1592
  },
1593
1593
  ...options
1594
1594
  ]);
@@ -1806,7 +1806,7 @@ let ChangeProfileAction = class ChangeProfileAction extends Action {
1806
1806
  super('changeProfile', '', ThemeIcon.asClassName(editIcon));
1807
1807
  this.item = item;
1808
1808
  this.userDataProfilesService = userDataProfilesService;
1809
- this.tooltip = ( localize(10568, "Change Profile"));
1809
+ this.tooltip = ( localize(10586, "Change Profile"));
1810
1810
  }
1811
1811
  getSwitchProfileActions() {
1812
1812
  return ( this.userDataProfilesService.profiles
@@ -1878,7 +1878,7 @@ let WorkspaceUriActionsColumnRenderer = class WorkspaceUriActionsColumnRenderer
1878
1878
  class: ThemeIcon.asClassName(Codicon.window),
1879
1879
  enabled: !this.uriIdentityService.extUri.isEqual(item.workspace, item.profileElement.getCurrentWorkspace()),
1880
1880
  id: 'openWorkspace',
1881
- tooltip: ( localize(10569, "Open in New Window")),
1881
+ tooltip: ( localize(10587, "Open in New Window")),
1882
1882
  run: () => item.profileElement.openWorkspace(item.workspace)
1883
1883
  };
1884
1884
  }
@@ -1888,7 +1888,7 @@ let WorkspaceUriActionsColumnRenderer = class WorkspaceUriActionsColumnRenderer
1888
1888
  class: ThemeIcon.asClassName(removeIcon),
1889
1889
  enabled: this.userDataProfileManagementService.getDefaultProfileToUse().id !== item.profileElement.profile.id,
1890
1890
  id: 'deleteTrustedUri',
1891
- tooltip: ( localize(10570, "Delete Path")),
1891
+ tooltip: ( localize(10588, "Delete Path")),
1892
1892
  run: () => item.profileElement.updateWorkspaces([], [item.workspace])
1893
1893
  };
1894
1894
  }
@@ -1903,7 +1903,7 @@ WorkspaceUriActionsColumnRenderer = WorkspaceUriActionsColumnRenderer_1 = ( __de
1903
1903
  ( __param(3, IUriIdentityService))
1904
1904
  ], WorkspaceUriActionsColumnRenderer));
1905
1905
  function getHostLabel(labelService, workspaceUri) {
1906
- return workspaceUri.authority ? labelService.getHostLabel(workspaceUri.scheme, workspaceUri.authority) : ( localize(10571, "Local"));
1906
+ return workspaceUri.authority ? labelService.getHostLabel(workspaceUri.scheme, workspaceUri.authority) : ( localize(10589, "Local"));
1907
1907
  }
1908
1908
  let UserDataProfilesEditorInput = class UserDataProfilesEditorInput extends EditorInput {
1909
1909
  static { UserDataProfilesEditorInput_1 = this; }
@@ -1924,7 +1924,7 @@ let UserDataProfilesEditorInput = class UserDataProfilesEditorInput extends Edit
1924
1924
  this._register(this.model.onDidChange(e => this.dirty = ( this.model.profiles.some(profile => profile instanceof NewProfileElement))));
1925
1925
  }
1926
1926
  get typeId() { return UserDataProfilesEditorInput_1.ID; }
1927
- getName() { return localize(10572, "Profiles"); }
1927
+ getName() { return localize(10590, "Profiles"); }
1928
1928
  getIcon() { return defaultUserDataProfileIcon; }
1929
1929
  async resolve() {
1930
1930
  await this.model.resolve();
@@ -11,7 +11,7 @@ import { IUserDataProfileManagementService } from "@codingame/monaco-vscode-api/
11
11
  import { IUserDataProfileService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/userDataProfile/common/userDataProfile.service";
12
12
  import { Disposable } from "@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle";
13
13
  import { URI } from "@codingame/monaco-vscode-api/vscode/vs/base/common/uri";
14
- import { EditorModel } from "@codingame/monaco-vscode-e571cbbb-526b-5d8b-92c5-a0437d2dabb3-common/vscode/vs/workbench/common/editor/editorModel";
14
+ import { EditorModel } from "@codingame/monaco-vscode-e7080bda-ce3e-5243-9a35-98cd9634dbda-common/vscode/vs/workbench/common/editor/editorModel";
15
15
  import { IDialogService } from "@codingame/monaco-vscode-api/vscode/vs/platform/dialogs/common/dialogs.service";
16
16
  import { IFileService } from "@codingame/monaco-vscode-api/vscode/vs/platform/files/common/files.service";
17
17
  import { IHostService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/host/browser/host.service";