@codingame/monaco-vscode-user-data-profile-service-override 18.1.3 → 18.2.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.
@@ -14,7 +14,7 @@ import { ITelemetryService } from '@codingame/monaco-vscode-api/vscode/vs/platfo
14
14
  import { IThemeService } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/themeService.service';
15
15
  import { ProfileResourceType } from '@codingame/monaco-vscode-api/vscode/vs/platform/userDataProfile/common/userDataProfile';
16
16
  import { IUserDataProfilesService } from '@codingame/monaco-vscode-api/vscode/vs/platform/userDataProfile/common/userDataProfile.service';
17
- import { EditorPane } from '@codingame/monaco-vscode-dcfc2191-2da1-54c7-8fb7-e92c5d11ecef-common/vscode/vs/workbench/browser/parts/editor/editorPane';
17
+ import { EditorPane } from '@codingame/monaco-vscode-60014c9d-b815-501d-83a9-4b08725c2ec2-common/vscode/vs/workbench/browser/parts/editor/editorPane';
18
18
  import { EditorInput } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/editor/editorInput';
19
19
  import { PROFILE_FILTER, defaultUserDataProfileIcon } from '@codingame/monaco-vscode-e72c94ca-257a-5b75-8b68-5a5fa3c18255-common/vscode/vs/workbench/services/userDataProfile/common/userDataProfile';
20
20
  import { IUserDataProfileService, IUserDataProfileManagementService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/userDataProfile/common/userDataProfile.service';
@@ -75,9 +75,9 @@ import { Orientation } from '@codingame/monaco-vscode-api/vscode/vs/base/browser
75
75
 
76
76
  var UserDataProfilesEditor_1, ExistingProfileResourceTreeRenderer_1, NewProfileResourceTreeRenderer_1, ProfileResourceChildTreeItemRenderer_1, WorkspaceUriHostColumnRenderer_1, WorkspaceUriPathColumnRenderer_1, WorkspaceUriActionsColumnRenderer_1, UserDataProfilesEditorInput_1;
77
77
  registerCss(userDataProfilesEditor);
78
- const editIcon = registerIcon('profiles-editor-edit-folder', Codicon.edit, ( localize(11535, 'Icon for the edit folder icon in the profiles editor.')));
79
- const removeIcon = registerIcon('profiles-editor-remove-folder', Codicon.close, ( localize(11536, 'Icon for the remove folder icon in the profiles editor.')));
80
- const profilesSashBorder = registerColor('profiles.sashBorder', PANEL_BORDER, ( localize(11537, "The color of the Profiles editor splitview sash border.")));
78
+ const editIcon = registerIcon('profiles-editor-edit-folder', Codicon.edit, ( localize(11551, 'Icon for the edit folder icon in the profiles editor.')));
79
+ const removeIcon = registerIcon('profiles-editor-remove-folder', Codicon.close, ( localize(11552, 'Icon for the remove folder icon in the profiles editor.')));
80
+ const profilesSashBorder = registerColor('profiles.sashBorder', PANEL_BORDER, ( localize(11553, "The color of the Profiles editor splitview sash border.")));
81
81
  const listStyles = getListStyles({
82
82
  listActiveSelectionBackground: editorBackground,
83
83
  listActiveSelectionForeground: foreground,
@@ -173,7 +173,7 @@ let UserDataProfilesEditor = class UserDataProfilesEditor extends EditorPane {
173
173
  return profileElement?.name ?? '';
174
174
  },
175
175
  getWidgetAriaLabel() {
176
- return localize(11538, "Profiles");
176
+ return localize(11554, "Profiles");
177
177
  }
178
178
  },
179
179
  openOnSingleClick: true,
@@ -194,12 +194,12 @@ let UserDataProfilesEditor = class UserDataProfilesEditor extends EditorPane {
194
194
  getActions: () => {
195
195
  const actions = [];
196
196
  if (this.templates.length) {
197
- actions.push(( new SubmenuAction('from.template', ( localize(11539, "From Template")), this.getCreateFromTemplateActions())));
197
+ actions.push(( new SubmenuAction('from.template', ( localize(11555, "From Template")), this.getCreateFromTemplateActions())));
198
198
  actions.push(( new Separator()));
199
199
  }
200
200
  actions.push(toAction({
201
201
  id: 'importProfile',
202
- label: ( localize(11540, "Import Profile...")),
202
+ label: ( localize(11556, "Import Profile...")),
203
203
  run: () => this.importProfile()
204
204
  }));
205
205
  return actions;
@@ -210,7 +210,7 @@ let UserDataProfilesEditor = class UserDataProfilesEditor extends EditorPane {
210
210
  supportIcons: true,
211
211
  ...defaultButtonStyles
212
212
  })));
213
- button.label = ( localize(11541, "New Profile"));
213
+ button.label = ( localize(11557, "New Profile"));
214
214
  this._register(button.onDidClick(e => this.createNewProfile()));
215
215
  }
216
216
  getCreateFromTemplateActions() {
@@ -255,17 +255,17 @@ let UserDataProfilesEditor = class UserDataProfilesEditor extends EditorPane {
255
255
  const actions = [];
256
256
  actions.push(toAction({
257
257
  id: 'newProfile',
258
- label: ( localize(11541, "New Profile")),
258
+ label: ( localize(11557, "New Profile")),
259
259
  run: () => this.createNewProfile()
260
260
  }));
261
261
  const templateActions = this.getCreateFromTemplateActions();
262
262
  if (templateActions.length) {
263
- actions.push(( new SubmenuAction('from.template', ( localize(11542, "New Profile From Template")), templateActions)));
263
+ actions.push(( new SubmenuAction('from.template', ( localize(11558, "New Profile From Template")), templateActions)));
264
264
  }
265
265
  actions.push(( new Separator()));
266
266
  actions.push(toAction({
267
267
  id: 'importProfile',
268
- label: ( localize(11540, "Import Profile...")),
268
+ label: ( localize(11556, "Import Profile...")),
269
269
  run: () => this.importProfile()
270
270
  }));
271
271
  return actions;
@@ -276,13 +276,13 @@ let UserDataProfilesEditor = class UserDataProfilesEditor extends EditorPane {
276
276
  const updateQuickPickItems = (value) => {
277
277
  const quickPickItems = [];
278
278
  if (value) {
279
- quickPickItems.push({ label: quickPick.value, description: ( localize(11543, "Import from URL")) });
279
+ quickPickItems.push({ label: quickPick.value, description: ( localize(11559, "Import from URL")) });
280
280
  }
281
- quickPickItems.push({ label: ( localize(11544, "Select File...")) });
281
+ quickPickItems.push({ label: ( localize(11560, "Select File...")) });
282
282
  quickPick.items = quickPickItems;
283
283
  };
284
- quickPick.title = ( localize(11545, "Import from Profile Template..."));
285
- quickPick.placeholder = ( localize(11546, "Provide Profile Template URL"));
284
+ quickPick.title = ( localize(11561, "Import from Profile Template..."));
285
+ quickPick.placeholder = ( localize(11562, "Provide Profile Template URL"));
286
286
  quickPick.ignoreFocusOut = true;
287
287
  disposables.add(quickPick.onDidChangeValue(updateQuickPickItems));
288
288
  updateQuickPickItems();
@@ -317,7 +317,7 @@ let UserDataProfilesEditor = class UserDataProfilesEditor extends EditorPane {
317
317
  canSelectFiles: true,
318
318
  canSelectMany: false,
319
319
  filters: PROFILE_FILTER,
320
- title: ( localize(11547, "Select Profile Template File")),
320
+ title: ( localize(11563, "Select Profile Template File")),
321
321
  });
322
322
  if (!profileLocation) {
323
323
  return null;
@@ -394,7 +394,7 @@ let ProfileElementRenderer = class ProfileElementRenderer {
394
394
  const label = append(container, $('.profile-list-item-label'));
395
395
  const dirty = append(container, $(`span${ThemeIcon.asCSSSelector(Codicon.circleFilled)}`));
396
396
  const description = append(container, $('.profile-list-item-description'));
397
- append(description, $(`span${ThemeIcon.asCSSSelector(Codicon.check)}`), $('span', undefined, ( localize(11548, "Active"))));
397
+ append(description, $(`span${ThemeIcon.asCSSSelector(Codicon.check)}`), $('span', undefined, ( localize(11564, "Active"))));
398
398
  const actionsContainer = append(container, $('.profile-tree-item-actions-container'));
399
399
  const actionBar = disposables.add(this.instantiationService.createInstance(WorkbenchToolBar, actionsContainer, {
400
400
  hoverDelegate: disposables.add(createInstantHoverDelegate()),
@@ -734,15 +734,15 @@ class AbstractProfileResourceTreeRenderer extends Disposable {
734
734
  getResourceTypeTitle(resourceType) {
735
735
  switch (resourceType) {
736
736
  case ProfileResourceType.Settings:
737
- return localize(11549, "Settings");
737
+ return localize(11565, "Settings");
738
738
  case ProfileResourceType.Keybindings:
739
- return localize(11550, "Keyboard Shortcuts");
739
+ return localize(11566, "Keyboard Shortcuts");
740
740
  case ProfileResourceType.Snippets:
741
- return localize(11551, "Snippets");
741
+ return localize(11567, "Snippets");
742
742
  case ProfileResourceType.Tasks:
743
- return localize(11552, "Tasks");
743
+ return localize(11568, "Tasks");
744
744
  case ProfileResourceType.Extensions:
745
- return localize(11553, "Extensions");
745
+ return localize(11569, "Extensions");
746
746
  }
747
747
  return '';
748
748
  }
@@ -771,18 +771,18 @@ let ProfileNameRenderer = class ProfileNameRenderer extends ProfilePropertyRende
771
771
  const elementDisposables = disposables.add(( new DisposableStore()));
772
772
  let profileElement;
773
773
  const nameContainer = append(parent, $('.profile-row-container'));
774
- append(nameContainer, $('.profile-label-element', undefined, ( localize(11554, "Name"))));
774
+ append(nameContainer, $('.profile-label-element', undefined, ( localize(11570, "Name"))));
775
775
  const nameInput = disposables.add(( new InputBox(nameContainer, this.contextViewService, {
776
776
  inputBoxStyles: getInputBoxStyle({
777
777
  inputBorder: settingsTextInputBorder
778
778
  }),
779
- ariaLabel: ( localize(11555, "Profile Name")),
780
- placeholder: ( localize(11555, "Profile Name")),
779
+ ariaLabel: ( localize(11571, "Profile Name")),
780
+ placeholder: ( localize(11571, "Profile Name")),
781
781
  validationOptions: {
782
782
  validation: (value) => {
783
783
  if (!value) {
784
784
  return {
785
- content: ( localize(11556, "Profile name is required and must be a non-empty value.")),
785
+ content: ( localize(11572, "Profile name is required and must be a non-empty value.")),
786
786
  type: MessageType.WARNING
787
787
  };
788
788
  }
@@ -796,7 +796,7 @@ let ProfileNameRenderer = class ProfileNameRenderer extends ProfilePropertyRende
796
796
  value = value.trim();
797
797
  if (initialName !== value && ( this.userDataProfilesService.profiles.some(p => !p.isTransient && p.name === value))) {
798
798
  return {
799
- content: ( localize(11557, "Profile with name {0} already exists.", value)),
799
+ content: ( localize(11573, "Profile with name {0} already exists.", value)),
800
800
  type: MessageType.WARNING
801
801
  };
802
802
  }
@@ -826,10 +826,10 @@ let ProfileNameRenderer = class ProfileNameRenderer extends ProfilePropertyRende
826
826
  nameInput.enable();
827
827
  }
828
828
  if (isDefaultProfile) {
829
- nameInput.setTooltip(( localize(11558, "Name cannot be changed for the default profile")));
829
+ nameInput.setTooltip(( localize(11574, "Name cannot be changed for the default profile")));
830
830
  }
831
831
  else {
832
- nameInput.setTooltip(( localize(11555, "Profile Name")));
832
+ nameInput.setTooltip(( localize(11571, "Profile Name")));
833
833
  }
834
834
  };
835
835
  return {
@@ -867,9 +867,9 @@ let ProfileIconRenderer = class ProfileIconRenderer extends ProfilePropertyRende
867
867
  const elementDisposables = disposables.add(( new DisposableStore()));
868
868
  let profileElement;
869
869
  const iconContainer = append(parent, $('.profile-row-container'));
870
- append(iconContainer, $('.profile-label-element', undefined, ( localize(11559, "Icon"))));
870
+ append(iconContainer, $('.profile-label-element', undefined, ( localize(11575, "Icon"))));
871
871
  const iconValueContainer = append(iconContainer, $('.profile-icon-container'));
872
- const iconElement = append(iconValueContainer, $(`${ThemeIcon.asCSSSelector(DEFAULT_ICON)}`, { 'tabindex': '0', 'role': 'button', 'aria-label': ( localize(11560, "Profile Icon")) }));
872
+ const iconElement = append(iconValueContainer, $(`${ThemeIcon.asCSSSelector(DEFAULT_ICON)}`, { 'tabindex': '0', 'role': 'button', 'aria-label': ( localize(11576, "Profile Icon")) }));
873
873
  const iconHover = disposables.add(this.hoverService.setupManagedHover(this.hoverDelegate, iconElement, ''));
874
874
  const iconSelectBox = disposables.add(this.instantiationService.createInstance(WorkbenchIconSelectBox, { icons: ICONS, inputBoxStyles: defaultInputBoxStyles }));
875
875
  let hoverWidget;
@@ -928,14 +928,14 @@ let ProfileIconRenderer = class ProfileIconRenderer extends ProfilePropertyRende
928
928
  profileElement.root.icon = selectedIcon.id;
929
929
  }
930
930
  }));
931
- append(iconValueContainer, $('.profile-description-element', undefined, ( localize(11561, "Profile icon to be shown in the activity bar"))));
931
+ append(iconValueContainer, $('.profile-description-element', undefined, ( localize(11577, "Profile icon to be shown in the activity bar"))));
932
932
  const renderIcon = (profileElement) => {
933
933
  if (profileElement?.root instanceof UserDataProfileElement && profileElement.root.profile.isDefault) {
934
934
  iconValueContainer.classList.add('disabled');
935
- iconHover.update(( localize(11562, "Icon cannot be changed for the default profile")));
935
+ iconHover.update(( localize(11578, "Icon cannot be changed for the default profile")));
936
936
  }
937
937
  else {
938
- iconHover.update(( localize(11563, "Click to change icon")));
938
+ iconHover.update(( localize(11579, "Click to change icon")));
939
939
  iconValueContainer.classList.remove('disabled');
940
940
  }
941
941
  if (profileElement.root.icon) {
@@ -975,9 +975,9 @@ let UseForCurrentWindowPropertyRenderer = class UseForCurrentWindowPropertyRende
975
975
  const elementDisposables = disposables.add(( new DisposableStore()));
976
976
  let profileElement;
977
977
  const useForCurrentWindowContainer = append(parent, $('.profile-row-container'));
978
- append(useForCurrentWindowContainer, $('.profile-label-element', undefined, ( localize(11564, "Use for Current Window"))));
978
+ append(useForCurrentWindowContainer, $('.profile-label-element', undefined, ( localize(11580, "Use for Current Window"))));
979
979
  const useForCurrentWindowValueContainer = append(useForCurrentWindowContainer, $('.profile-use-for-current-container'));
980
- const useForCurrentWindowTitle = ( localize(11565, "Use this profile for the current window"));
980
+ const useForCurrentWindowTitle = ( localize(11581, "Use this profile for the current window"));
981
981
  const useForCurrentWindowCheckbox = disposables.add(( new Checkbox(useForCurrentWindowTitle, false, defaultCheckboxStyles)));
982
982
  append(useForCurrentWindowValueContainer, useForCurrentWindowCheckbox.domNode);
983
983
  const useForCurrentWindowLabel = append(useForCurrentWindowValueContainer, $('.profile-description-element', undefined, useForCurrentWindowTitle));
@@ -1027,9 +1027,9 @@ class UseAsDefaultProfileRenderer extends ProfilePropertyRenderer {
1027
1027
  const elementDisposables = disposables.add(( new DisposableStore()));
1028
1028
  let profileElement;
1029
1029
  const useAsDefaultProfileContainer = append(parent, $('.profile-row-container'));
1030
- append(useAsDefaultProfileContainer, $('.profile-label-element', undefined, ( localize(11566, "Use for New Windows"))));
1030
+ append(useAsDefaultProfileContainer, $('.profile-label-element', undefined, ( localize(11582, "Use for New Windows"))));
1031
1031
  const useAsDefaultProfileValueContainer = append(useAsDefaultProfileContainer, $('.profile-use-as-default-container'));
1032
- const useAsDefaultProfileTitle = ( localize(11567, "Use this profile as the default for new windows"));
1032
+ const useAsDefaultProfileTitle = ( localize(11583, "Use this profile as the default for new windows"));
1033
1033
  const useAsDefaultProfileCheckbox = disposables.add(( new Checkbox(useAsDefaultProfileTitle, false, defaultCheckboxStyles)));
1034
1034
  append(useAsDefaultProfileValueContainer, useAsDefaultProfileCheckbox.domNode);
1035
1035
  const useAsDefaultProfileLabel = append(useAsDefaultProfileValueContainer, $('.profile-description-element', undefined, useAsDefaultProfileTitle));
@@ -1076,11 +1076,11 @@ let CopyFromProfileRenderer = class CopyFromProfileRenderer extends ProfilePrope
1076
1076
  const elementDisposables = disposables.add(( new DisposableStore()));
1077
1077
  let profileElement;
1078
1078
  const copyFromContainer = append(parent, $('.profile-row-container.profile-copy-from-container'));
1079
- append(copyFromContainer, $('.profile-label-element', undefined, ( localize(11568, "Copy from"))));
1080
- append(copyFromContainer, $('.profile-description-element', undefined, ( localize(11569, "Select the profile source from which you want to copy contents"))));
1079
+ append(copyFromContainer, $('.profile-label-element', undefined, ( localize(11584, "Copy from"))));
1080
+ append(copyFromContainer, $('.profile-description-element', undefined, ( localize(11585, "Select the profile source from which you want to copy contents"))));
1081
1081
  const copyFromSelectBox = disposables.add(this.instantiationService.createInstance(SelectBox, [], 0, this.contextViewService, defaultSelectBoxStyles, {
1082
1082
  useCustomDrawn: true,
1083
- ariaLabel: ( localize(11570, "Copy profile from")),
1083
+ ariaLabel: ( localize(11586, "Copy profile from")),
1084
1084
  }));
1085
1085
  copyFromSelectBox.render(append(copyFromContainer, $('.profile-select-container')));
1086
1086
  const render = (profileElement, copyFromOptions) => {
@@ -1124,19 +1124,19 @@ let CopyFromProfileRenderer = class CopyFromProfileRenderer extends ProfilePrope
1124
1124
  getCopyFromOptions(profileElement) {
1125
1125
  const separator = { text: '\u2500\u2500\u2500\u2500\u2500\u2500', isDisabled: true };
1126
1126
  const copyFromOptions = [];
1127
- copyFromOptions.push({ text: ( localize(11571, "None")) });
1127
+ copyFromOptions.push({ text: ( localize(11587, "None")) });
1128
1128
  for (const [copyFromTemplate, name] of profileElement.copyFromTemplates) {
1129
1129
  if (!( this.templates.some(template => this.uriIdentityService.extUri.isEqual(( URI.parse(template.url)), copyFromTemplate)))) {
1130
1130
  copyFromOptions.push({ text: `${name} (${basename(copyFromTemplate)})`, id: ( copyFromTemplate.toString()), source: copyFromTemplate });
1131
1131
  }
1132
1132
  }
1133
1133
  if (this.templates.length) {
1134
- copyFromOptions.push({ ...separator, decoratorRight: ( localize(11572, "Profile Templates")) });
1134
+ copyFromOptions.push({ ...separator, decoratorRight: ( localize(11588, "Profile Templates")) });
1135
1135
  for (const template of this.templates) {
1136
1136
  copyFromOptions.push({ text: template.name, id: template.url, source: ( URI.parse(template.url)) });
1137
1137
  }
1138
1138
  }
1139
- copyFromOptions.push({ ...separator, decoratorRight: ( localize(11573, "Existing Profiles")) });
1139
+ copyFromOptions.push({ ...separator, decoratorRight: ( localize(11589, "Existing Profiles")) });
1140
1140
  for (const profile of this.userDataProfilesService.profiles) {
1141
1141
  if (!profile.isTransient) {
1142
1142
  copyFromOptions.push({ text: profile.name, id: profile.id, source: profile });
@@ -1168,11 +1168,11 @@ let ContentsProfileRenderer = class ContentsProfileRenderer extends ProfilePrope
1168
1168
  const elementDisposables = disposables.add(( new DisposableStore()));
1169
1169
  let profileElement;
1170
1170
  const configureRowContainer = append(parent, $('.profile-row-container'));
1171
- append(configureRowContainer, $('.profile-label-element', undefined, ( localize(11574, "Contents"))));
1171
+ append(configureRowContainer, $('.profile-label-element', undefined, ( localize(11590, "Contents"))));
1172
1172
  const contentsDescriptionElement = append(configureRowContainer, $('.profile-description-element'));
1173
1173
  const contentsTreeHeader = append(configureRowContainer, $('.profile-content-tree-header'));
1174
- const optionsLabel = $('.options-header', undefined, $('span', undefined, ( localize(11575, "Source"))));
1175
- append(contentsTreeHeader, $(''), $('', undefined, ( localize(11574, "Contents"))), optionsLabel, $(''));
1174
+ const optionsLabel = $('.options-header', undefined, $('span', undefined, ( localize(11591, "Source"))));
1175
+ append(contentsTreeHeader, $(''), $('', undefined, ( localize(11590, "Contents"))), optionsLabel, $(''));
1176
1176
  const delegate = ( new ProfileContentTreeElementDelegate());
1177
1177
  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, [
1178
1178
  this.instantiationService.createInstance(ExistingProfileResourceTreeRenderer),
@@ -1244,27 +1244,27 @@ let ContentsProfileRenderer = class ContentsProfileRenderer extends ProfilePrope
1244
1244
  clearNode(contentsDescriptionElement);
1245
1245
  const markdown = ( new MarkdownString());
1246
1246
  if (element.root instanceof UserDataProfileElement && element.root.profile.isDefault) {
1247
- markdown.appendMarkdown(( localize(11576, "Browse contents of this profile\n")));
1247
+ markdown.appendMarkdown(( localize(11592, "Browse contents of this profile\n")));
1248
1248
  }
1249
1249
  else {
1250
- markdown.appendMarkdown(( localize(11577, "Configure source of contents for this profile\n")));
1250
+ markdown.appendMarkdown(( localize(11593, "Configure source of contents for this profile\n")));
1251
1251
  if (element.root instanceof NewProfileElement) {
1252
1252
  const copyFromName = element.root.getCopyFromName();
1253
1253
  const optionName = copyFromName === this.userDataProfilesService.defaultProfile.name
1254
- ? ( localize(11578, "{0} (Copy)", copyFromName))
1254
+ ? ( localize(11594, "{0} (Copy)", copyFromName))
1255
1255
  : copyFromName;
1256
1256
  if (optionName) {
1257
1257
  markdown
1258
1258
  .appendMarkdown(( localize(
1259
- 11579,
1259
+ 11595,
1260
1260
  "- *{0}:* Copy contents from the {1} profile\n",
1261
1261
  optionName,
1262
1262
  copyFromName
1263
1263
  )));
1264
1264
  }
1265
1265
  markdown
1266
- .appendMarkdown(( localize(11580, "- *Default:* Use contents from the Default profile\n")))
1267
- .appendMarkdown(( localize(11581, "- *None:* Create empty contents\n")));
1266
+ .appendMarkdown(( localize(11596, "- *Default:* Use contents from the Default profile\n")))
1267
+ .appendMarkdown(( localize(11597, "- *None:* Create empty contents\n")));
1268
1268
  }
1269
1269
  }
1270
1270
  append(contentsDescriptionElement, elementDisposables.add(renderMarkdown(markdown)).element);
@@ -1325,7 +1325,7 @@ let ProfileWorkspacesRenderer = class ProfileWorkspacesRenderer extends ProfileP
1325
1325
  const elementDisposables = disposables.add(( new DisposableStore()));
1326
1326
  let profileElement;
1327
1327
  const profileWorkspacesRowContainer = append(parent, $('.profile-row-container'));
1328
- append(profileWorkspacesRowContainer, $('.profile-label-element', undefined, ( localize(11582, "Folders & Workspaces"))));
1328
+ append(profileWorkspacesRowContainer, $('.profile-label-element', undefined, ( localize(11598, "Folders & Workspaces"))));
1329
1329
  const profileWorkspacesDescriptionElement = append(profileWorkspacesRowContainer, $('.profile-description-element'));
1330
1330
  const workspacesTableContainer = append(profileWorkspacesRowContainer, $('.profile-associations-table'));
1331
1331
  const table = this.workspacesTable = disposables.add(this.instantiationService.createInstance((WorkbenchTable), 'ProfileEditor-AssociationsTable', workspacesTableContainer, new class {
@@ -1344,14 +1344,14 @@ let ProfileWorkspacesRenderer = class ProfileWorkspacesRenderer extends ProfileP
1344
1344
  project(row) { return row; },
1345
1345
  },
1346
1346
  {
1347
- label: ( localize(11583, "Host")),
1347
+ label: ( localize(11599, "Host")),
1348
1348
  tooltip: '',
1349
1349
  weight: 2,
1350
1350
  templateId: WorkspaceUriHostColumnRenderer.TEMPLATE_ID,
1351
1351
  project(row) { return row; },
1352
1352
  },
1353
1353
  {
1354
- label: ( localize(11584, "Path")),
1354
+ label: ( localize(11600, "Path")),
1355
1355
  tooltip: '',
1356
1356
  weight: 7,
1357
1357
  templateId: WorkspaceUriPathColumnRenderer.TEMPLATE_ID,
@@ -1380,16 +1380,16 @@ let ProfileWorkspacesRenderer = class ProfileWorkspacesRenderer extends ProfileP
1380
1380
  getAriaLabel: (item) => {
1381
1381
  const hostLabel = getHostLabel(this.labelService, item.workspace);
1382
1382
  if (hostLabel === undefined || hostLabel.length === 0) {
1383
- return localize(11585, "{0}, trusted", this.labelService.getUriLabel(item.workspace));
1383
+ return localize(11601, "{0}, trusted", this.labelService.getUriLabel(item.workspace));
1384
1384
  }
1385
1385
  return localize(
1386
- 11586,
1386
+ 11602,
1387
1387
  "{0} on {1}, trusted",
1388
1388
  this.labelService.getUriLabel(item.workspace),
1389
1389
  hostLabel
1390
1390
  );
1391
1391
  },
1392
- getWidgetAriaLabel: () => ( localize(11587, "Trusted Folders & Workspaces"))
1392
+ getWidgetAriaLabel: () => ( localize(11603, "Trusted Folders & Workspaces"))
1393
1393
  },
1394
1394
  identityProvider: {
1395
1395
  getId(element) {
@@ -1406,15 +1406,15 @@ let ProfileWorkspacesRenderer = class ProfileWorkspacesRenderer extends ProfileP
1406
1406
  })));
1407
1407
  const addButtonBarElement = append(profileWorkspacesRowContainer, $('.profile-workspaces-button-container'));
1408
1408
  const buttonBar = disposables.add(( new ButtonBar(addButtonBarElement)));
1409
- const addButton = this._register(buttonBar.addButton({ title: ( localize(11588, "Add Folder")), ...defaultButtonStyles }));
1410
- addButton.label = ( localize(11588, "Add Folder"));
1409
+ const addButton = this._register(buttonBar.addButton({ title: ( localize(11604, "Add Folder")), ...defaultButtonStyles }));
1410
+ addButton.label = ( localize(11604, "Add Folder"));
1411
1411
  disposables.add(addButton.onDidClick(async () => {
1412
1412
  const uris = await this.fileDialogService.showOpenDialog({
1413
1413
  canSelectFiles: false,
1414
1414
  canSelectFolders: true,
1415
1415
  canSelectMany: true,
1416
- openLabel: ( localize(11589, "Add Folder")),
1417
- title: ( localize(11590, "Select Folders To Add"))
1416
+ openLabel: ( localize(11605, "Add Folder")),
1417
+ title: ( localize(11606, "Select Folders To Add"))
1418
1418
  });
1419
1419
  if (uris) {
1420
1420
  if (profileElement?.root instanceof UserDataProfileElement) {
@@ -1429,7 +1429,7 @@ let ProfileWorkspacesRenderer = class ProfileWorkspacesRenderer extends ProfileP
1429
1429
  }));
1430
1430
  const updateTable = () => {
1431
1431
  if (profileElement?.root instanceof UserDataProfileElement && profileElement.root.workspaces?.length) {
1432
- profileWorkspacesDescriptionElement.textContent = ( localize(11591, "Following folders and workspaces are using this profile"));
1432
+ profileWorkspacesDescriptionElement.textContent = ( localize(11607, "Following folders and workspaces are using this profile"));
1433
1433
  workspacesTableContainer.classList.remove('hide');
1434
1434
  table.splice(0, table.length, ( profileElement.root.workspaces
1435
1435
  .map(workspace => ({ workspace, profileElement: profileElement.root })))
@@ -1437,7 +1437,7 @@ let ProfileWorkspacesRenderer = class ProfileWorkspacesRenderer extends ProfileP
1437
1437
  this.layout();
1438
1438
  }
1439
1439
  else {
1440
- profileWorkspacesDescriptionElement.textContent = ( localize(11592, "No folders or workspaces are using this profile"));
1440
+ profileWorkspacesDescriptionElement.textContent = ( localize(11608, "No folders or workspaces are using this profile"));
1441
1441
  workspacesTableContainer.classList.add('hide');
1442
1442
  }
1443
1443
  };
@@ -1511,13 +1511,13 @@ let ExistingProfileResourceTreeRenderer = class ExistingProfileResourceTreeRende
1511
1511
  }
1512
1512
  const updateRadioItems = () => {
1513
1513
  templateData.radio.setItems([{
1514
- text: ( localize(11593, "Default")),
1515
- tooltip: ( localize(11594, "Use {0} from the Default profile", resourceTypeTitle)),
1514
+ text: ( localize(11609, "Default")),
1515
+ tooltip: ( localize(11610, "Use {0} from the Default profile", resourceTypeTitle)),
1516
1516
  isActive: root.getFlag(element.resourceType)
1517
1517
  },
1518
1518
  {
1519
1519
  text: root.name,
1520
- tooltip: ( localize(11595, "Use {0} from the {1} profile", resourceTypeTitle, root.name)),
1520
+ tooltip: ( localize(11611, "Use {0} from the {1} profile", resourceTypeTitle, root.name)),
1521
1521
  isActive: !root.getFlag(element.resourceType)
1522
1522
  }]);
1523
1523
  };
@@ -1585,22 +1585,22 @@ let NewProfileResourceTreeRenderer = class NewProfileResourceTreeRenderer extend
1585
1585
  templateData.label.textContent = resourceTypeTitle;
1586
1586
  const renderRadioItems = () => {
1587
1587
  const options = [{
1588
- text: ( localize(11593, "Default")),
1589
- tooltip: ( localize(11594, "Use {0} from the Default profile", resourceTypeTitle)),
1588
+ text: ( localize(11609, "Default")),
1589
+ tooltip: ( localize(11610, "Use {0} from the Default profile", resourceTypeTitle)),
1590
1590
  },
1591
1591
  {
1592
- text: ( localize(11596, "None")),
1593
- tooltip: ( localize(11597, "Create empty {0}", resourceTypeTitle))
1592
+ text: ( localize(11612, "None")),
1593
+ tooltip: ( localize(11613, "Create empty {0}", resourceTypeTitle))
1594
1594
  }];
1595
1595
  const copyFromName = root.getCopyFromName();
1596
1596
  const name = copyFromName === this.userDataProfilesService.defaultProfile.name
1597
- ? ( localize(11578, "{0} (Copy)", copyFromName))
1597
+ ? ( localize(11594, "{0} (Copy)", copyFromName))
1598
1598
  : copyFromName;
1599
1599
  if (root.copyFrom && name) {
1600
1600
  templateData.radio.setItems([
1601
1601
  {
1602
1602
  text: name,
1603
- tooltip: name ? ( localize(11598, "Copy {0} from the {1} profile", resourceTypeTitle, name)) : ( localize(11599, "Copy")),
1603
+ tooltip: name ? ( localize(11614, "Copy {0} from the {1} profile", resourceTypeTitle, name)) : ( localize(11615, "Copy")),
1604
1604
  },
1605
1605
  ...options
1606
1606
  ]);
@@ -1821,7 +1821,7 @@ let ChangeProfileAction = class ChangeProfileAction {
1821
1821
  this.label = 'Change Profile';
1822
1822
  this.class = ThemeIcon.asClassName(editIcon);
1823
1823
  this.enabled = true;
1824
- this.tooltip = ( localize(11600, "Change Profile"));
1824
+ this.tooltip = ( localize(11616, "Change Profile"));
1825
1825
  this.checked = false;
1826
1826
  }
1827
1827
  run() { }
@@ -1895,7 +1895,7 @@ let WorkspaceUriActionsColumnRenderer = class WorkspaceUriActionsColumnRenderer
1895
1895
  class: ThemeIcon.asClassName(Codicon.window),
1896
1896
  enabled: !this.uriIdentityService.extUri.isEqual(item.workspace, item.profileElement.getCurrentWorkspace()),
1897
1897
  id: 'openWorkspace',
1898
- tooltip: ( localize(11601, "Open in New Window")),
1898
+ tooltip: ( localize(11617, "Open in New Window")),
1899
1899
  run: () => item.profileElement.openWorkspace(item.workspace)
1900
1900
  };
1901
1901
  }
@@ -1905,7 +1905,7 @@ let WorkspaceUriActionsColumnRenderer = class WorkspaceUriActionsColumnRenderer
1905
1905
  class: ThemeIcon.asClassName(removeIcon),
1906
1906
  enabled: this.userDataProfileManagementService.getDefaultProfileToUse().id !== item.profileElement.profile.id,
1907
1907
  id: 'deleteTrustedUri',
1908
- tooltip: ( localize(11602, "Delete Path")),
1908
+ tooltip: ( localize(11618, "Delete Path")),
1909
1909
  run: () => item.profileElement.updateWorkspaces([], [item.workspace])
1910
1910
  };
1911
1911
  }
@@ -1920,7 +1920,7 @@ WorkspaceUriActionsColumnRenderer = WorkspaceUriActionsColumnRenderer_1 = ( __de
1920
1920
  ( __param(3, IUriIdentityService))
1921
1921
  ], WorkspaceUriActionsColumnRenderer));
1922
1922
  function getHostLabel(labelService, workspaceUri) {
1923
- return workspaceUri.authority ? labelService.getHostLabel(workspaceUri.scheme, workspaceUri.authority) : ( localize(11603, "Local"));
1923
+ return workspaceUri.authority ? labelService.getHostLabel(workspaceUri.scheme, workspaceUri.authority) : ( localize(11619, "Local"));
1924
1924
  }
1925
1925
  let UserDataProfilesEditorInput = class UserDataProfilesEditorInput extends EditorInput {
1926
1926
  static { UserDataProfilesEditorInput_1 = this; }
@@ -1941,7 +1941,7 @@ let UserDataProfilesEditorInput = class UserDataProfilesEditorInput extends Edit
1941
1941
  this._register(this.model.onDidChange(e => this.dirty = ( this.model.profiles.some(profile => profile instanceof NewProfileElement))));
1942
1942
  }
1943
1943
  get typeId() { return UserDataProfilesEditorInput_1.ID; }
1944
- getName() { return localize(11604, "Profiles"); }
1944
+ getName() { return localize(11620, "Profiles"); }
1945
1945
  getIcon() { return defaultUserDataProfileIcon; }
1946
1946
  async resolve() {
1947
1947
  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-924e8f00-6faf-5059-b518-e43427d29ab3-common/vscode/vs/workbench/common/editor/editorModel";
14
+ import { EditorModel } from "@codingame/monaco-vscode-ed7f2efb-131f-5ae8-b8fe-f20867e14c58-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";