@codingame/monaco-vscode-walkthrough-service-override 8.0.1 → 8.0.3

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-walkthrough-service-override",
3
- "version": "8.0.1",
3
+ "version": "8.0.3",
4
4
  "keywords": [],
5
5
  "author": {
6
6
  "name": "CodinGame",
@@ -26,6 +26,6 @@
26
26
  }
27
27
  },
28
28
  "dependencies": {
29
- "vscode": "npm:@codingame/monaco-vscode-api@8.0.1"
29
+ "vscode": "npm:@codingame/monaco-vscode-api@8.0.3"
30
30
  }
31
31
  }
@@ -36,7 +36,7 @@ registerAction2(class extends Action2 {
36
36
  constructor() {
37
37
  super({
38
38
  id: 'workbench.action.openWalkthrough',
39
- title: ( localize2(3221, 'Welcome')),
39
+ title: ( localize2(3222, 'Welcome')),
40
40
  category: Categories.Help,
41
41
  f1: true,
42
42
  menu: {
@@ -45,7 +45,7 @@ registerAction2(class extends Action2 {
45
45
  order: 1,
46
46
  },
47
47
  metadata: {
48
- description: ( localize2(3222, 'Opens a Walkthrough to help you get started in VS Code.'))
48
+ description: ( localize2(3223, 'Opens a Walkthrough to help you get started in VS Code.'))
49
49
  }
50
50
  });
51
51
  }
@@ -113,15 +113,15 @@ registerAction2(class extends Action2 {
113
113
  }
114
114
  });
115
115
  ( (Registry.as(EditorExtensions.EditorFactory))).registerEditorSerializer(GettingStartedInput.ID, GettingStartedInputSerializer);
116
- ( (Registry.as(EditorExtensions.EditorPane))).registerEditorPane(EditorPaneDescriptor.create(GettingStartedPage, GettingStartedPage.ID, ( localize(3223, "Welcome"))), [
116
+ ( (Registry.as(EditorExtensions.EditorPane))).registerEditorPane(EditorPaneDescriptor.create(GettingStartedPage, GettingStartedPage.ID, ( localize(3224, "Welcome"))), [
117
117
  ( (new SyncDescriptor(GettingStartedInput)))
118
118
  ]);
119
- const category = ( localize2(3223, "Welcome"));
119
+ const category = ( localize2(3224, "Welcome"));
120
120
  registerAction2(class extends Action2 {
121
121
  constructor() {
122
122
  super({
123
123
  id: 'welcome.goBack',
124
- title: ( localize2(3224, 'Go Back')),
124
+ title: ( localize2(3225, 'Go Back')),
125
125
  category,
126
126
  keybinding: {
127
127
  weight: KeybindingWeight.EditorContrib,
@@ -157,7 +157,7 @@ registerAction2(class extends Action2 {
157
157
  constructor() {
158
158
  super({
159
159
  id: 'welcome.markStepComplete',
160
- title: ( localize(3225, "Mark Step Complete")),
160
+ title: ( localize(3226, "Mark Step Complete")),
161
161
  category,
162
162
  });
163
163
  }
@@ -173,7 +173,7 @@ registerAction2(class extends Action2 {
173
173
  constructor() {
174
174
  super({
175
175
  id: 'welcome.markStepIncomplete',
176
- title: ( localize(3226, "Mark Step Incomplete")),
176
+ title: ( localize(3227, "Mark Step Incomplete")),
177
177
  category,
178
178
  });
179
179
  }
@@ -189,7 +189,7 @@ registerAction2(class extends Action2 {
189
189
  constructor() {
190
190
  super({
191
191
  id: 'welcome.showAllWalkthroughs',
192
- title: ( localize2(3227, 'Open Walkthrough...')),
192
+ title: ( localize2(3228, 'Open Walkthrough...')),
193
193
  category,
194
194
  f1: true,
195
195
  });
@@ -217,7 +217,7 @@ registerAction2(class extends Action2 {
217
217
  quickPick.canSelectMany = false;
218
218
  quickPick.matchOnDescription = true;
219
219
  quickPick.matchOnDetail = true;
220
- quickPick.placeholder = ( localize(3228, 'Select a walkthrough to open'));
220
+ quickPick.placeholder = ( localize(3229, 'Select a walkthrough to open'));
221
221
  quickPick.items = await this.getQuickPickItems(contextService, gettingStartedService);
222
222
  quickPick.busy = true;
223
223
  quickPick.onDidAccept(() => {
@@ -237,7 +237,7 @@ registerAction2(class extends Action2 {
237
237
  }
238
238
  });
239
239
  const WorkspacePlatform = ( (new RawContextKey('workspacePlatform', undefined, ( localize(
240
- 3229,
240
+ 3230,
241
241
  "The platform of the current workspace, which in remote or serverless contexts may be different from the platform of the UI"
242
242
  )))));
243
243
  let WorkspacePlatformContribution = class WorkspacePlatformContribution {
@@ -289,7 +289,7 @@ configurationRegistry.registerConfiguration({
289
289
  type: 'boolean',
290
290
  default: true,
291
291
  description: ( localize(
292
- 3230,
292
+ 3231,
293
293
  "When enabled, an extension's walkthrough will open upon install of the extension."
294
294
  ))
295
295
  },
@@ -298,25 +298,25 @@ configurationRegistry.registerConfiguration({
298
298
  'type': 'string',
299
299
  'enum': ['none', 'welcomePage', 'readme', 'newUntitledFile', 'welcomePageInEmptyWorkbench', 'terminal'],
300
300
  'enumDescriptions': [
301
- ( localize(3231, "Start without an editor.")),
301
+ ( localize(3232, "Start without an editor.")),
302
302
  ( localize(
303
- 3232,
303
+ 3233,
304
304
  "Open the Welcome page, with content to aid in getting started with VS Code and extensions."
305
305
  )),
306
306
  ( localize(
307
- 3233,
307
+ 3234,
308
308
  "Open the README when opening a folder that contains one, fallback to 'welcomePage' otherwise. Note: This is only observed as a global configuration, it will be ignored if set in a workspace or folder configuration."
309
309
  )),
310
310
  ( localize(
311
- 3234,
311
+ 3235,
312
312
  "Open a new untitled text file (only applies when opening an empty window)."
313
313
  )),
314
- ( localize(3235, "Open the Welcome page when opening an empty workbench.")),
315
- ( localize(3236, "Open a new terminal in the editor area.")),
314
+ ( localize(3236, "Open the Welcome page when opening an empty workbench.")),
315
+ ( localize(3237, "Open a new terminal in the editor area.")),
316
316
  ],
317
317
  'default': 'welcomePage',
318
318
  'description': ( localize(
319
- 3237,
319
+ 3238,
320
320
  "Controls which editor is shown at startup, if none are restored from the previous session."
321
321
  ))
322
322
  },
@@ -324,8 +324,8 @@ configurationRegistry.registerConfiguration({
324
324
  scope: ConfigurationScope.APPLICATION,
325
325
  type: 'boolean',
326
326
  default: false,
327
- deprecationMessage: ( localize(3238, "Deprecated, use the global `workbench.reduceMotion`.")),
328
- description: ( localize(3239, "When enabled, reduce motion in welcome page."))
327
+ deprecationMessage: ( localize(3239, "Deprecated, use the global `workbench.reduceMotion`.")),
328
+ description: ( localize(3240, "When enabled, reduce motion in welcome page."))
329
329
  }
330
330
  }
331
331
  });
@@ -124,7 +124,7 @@ let GettingStartedPage = class GettingStartedPage extends EditorPane {
124
124
  this.container = $('.gettingStartedContainer', {
125
125
  role: 'document',
126
126
  tabindex: 0,
127
- 'aria-label': ( localize(7417, "Overview of how to get up to speed with your editor."))
127
+ 'aria-label': ( localize(7544, "Overview of how to get up to speed with your editor."))
128
128
  });
129
129
  this.stepMediaComponent = $('.getting-started-media');
130
130
  this.stepMediaComponent.id = generateUuid();
@@ -401,7 +401,7 @@ let GettingStartedPage = class GettingStartedPage extends EditorPane {
401
401
  label: x.title,
402
402
  detail: x.description,
403
403
  description: x.source,
404
- })))), { canPickMany: false, matchOnDescription: true, matchOnDetail: true, title: ( localize(7418, "Open Walkthrough...")) });
404
+ })))), { canPickMany: false, matchOnDescription: true, matchOnDetail: true, title: ( localize(7545, "Open Walkthrough...")) });
405
405
  if (selection) {
406
406
  this.runDispatchCommand('selectCategory', selection.id);
407
407
  }
@@ -625,7 +625,7 @@ let GettingStartedPage = class GettingStartedPage extends EditorPane {
625
625
  this.categoriesPageScrollbar.dispose();
626
626
  }
627
627
  this.categoriesSlide = $('.gettingStartedSlideCategories.gettingStartedSlide');
628
- const prevButton = $('button.prev-button.button-link', { 'x-dispatch': 'scrollPrev' }, $('span.scroll-button.codicon.codicon-chevron-left'), $('span.moreText', {}, ( localize(7419, "Welcome"))));
628
+ const prevButton = $('button.prev-button.button-link', { 'x-dispatch': 'scrollPrev' }, $('span.scroll-button.codicon.codicon-chevron-left'), $('span.moreText', {}, ( localize(7546, "Welcome"))));
629
629
  this.stepsSlide = $('.gettingStartedSlideDetails.gettingStartedSlide', {}, prevButton);
630
630
  this.stepsContent = $('.gettingStartedDetailsContent', {});
631
631
  this.detailsPageScrollbar = this._register(( (new DomScrollableElement(this.stepsContent, { className: 'full-height-scrollable' }))));
@@ -646,11 +646,11 @@ let GettingStartedPage = class GettingStartedPage extends EditorPane {
646
646
  icon: Codicon.check,
647
647
  actionClassName: 'getting-started-checkbox',
648
648
  isChecked: this.configurationService.getValue(configurationKey) === 'welcomePage',
649
- title: ( localize(7420, "When checked, this page will be shown on startup.")),
649
+ title: ( localize(7547, "When checked, this page will be shown on startup.")),
650
650
  ...defaultToggleStyles
651
651
  })));
652
652
  showOnStartupCheckbox.domNode.id = 'showOnStartup';
653
- const showOnStartupLabel = $('label.caption', { for: 'showOnStartup' }, ( localize(7421, "Show welcome page on startup")));
653
+ const showOnStartupLabel = $('label.caption', { for: 'showOnStartup' }, ( localize(7548, "Show welcome page on startup")));
654
654
  const onShowOnStartupChanged = () => {
655
655
  if (showOnStartupCheckbox.checked) {
656
656
  this.telemetryService.publicLog2('gettingStarted.ActionExecuted', { command: 'showOnStartupChecked', argument: undefined, walkthroughId: this.currentWalkthrough?.id });
@@ -669,7 +669,7 @@ let GettingStartedPage = class GettingStartedPage extends EditorPane {
669
669
  showOnStartupCheckbox.checked = !showOnStartupCheckbox.checked;
670
670
  onShowOnStartupChanged();
671
671
  }));
672
- const header = $('.header', {}, $('h1.product-name.caption', {}, this.productService.nameLong), $('p.subtitle.description', {}, ( localize(7422, "Editing evolved"))));
672
+ const header = $('.header', {}, $('h1.product-name.caption', {}, this.productService.nameLong), $('p.subtitle.description', {}, ( localize(7549, "Editing evolved"))));
673
673
  const leftColumn = $('.categories-column.categories-column-left', {});
674
674
  const rightColumn = $('.categories-column.categories-column-right', {});
675
675
  const startList = this.buildStartList();
@@ -763,7 +763,7 @@ let GettingStartedPage = class GettingStartedPage extends EditorPane {
763
763
  const link = $('button.button-link');
764
764
  link.innerText = name;
765
765
  link.title = fullPath;
766
- link.setAttribute('aria-label', ( localize(7423, "Open folder {0} with path {1}", name, parentPath)));
766
+ link.setAttribute('aria-label', ( localize(7550, "Open folder {0} with path {1}", name, parentPath)));
767
767
  link.addEventListener('click', e => {
768
768
  this.telemetryService.publicLog2('gettingStarted.ActionExecuted', { command: 'openRecent', argument: undefined, walkthroughId: this.currentWalkthrough?.id });
769
769
  this.hostService.openWindow([windowOpenable], {
@@ -786,18 +786,18 @@ let GettingStartedPage = class GettingStartedPage extends EditorPane {
786
786
  this.recentlyOpenedList.dispose();
787
787
  }
788
788
  const recentlyOpenedList = this.recentlyOpenedList = ( (new GettingStartedIndexList({
789
- title: ( localize(7424, "Recent")),
789
+ title: ( localize(7551, "Recent")),
790
790
  klass: 'recently-opened',
791
791
  limit: 5,
792
- empty: $('.empty-recent', {}, ( localize(7425, "You have no recent folders,")), $('button.button-link', { 'x-dispatch': 'openFolder' }, ( localize(7426, "open a folder"))), ( localize(7427, "to start."))),
792
+ empty: $('.empty-recent', {}, ( localize(7552, "You have no recent folders,")), $('button.button-link', { 'x-dispatch': 'openFolder' }, ( localize(7553, "open a folder"))), ( localize(7554, "to start."))),
793
793
  more: $('.more', {}, $('button.button-link', {
794
794
  'x-dispatch': 'showMoreRecents',
795
795
  title: ( localize(
796
- 7428,
796
+ 7555,
797
797
  "Show All Recent Folders {0}",
798
798
  this.getKeybindingLabel(OpenRecentAction.ID)
799
799
  ))
800
- }, ( localize(7429, "More...")))),
800
+ }, ( localize(7556, "More...")))),
801
801
  renderElement: renderRecent,
802
802
  contextService: this.contextService
803
803
  })));
@@ -825,7 +825,7 @@ let GettingStartedPage = class GettingStartedPage extends EditorPane {
825
825
  this.startList.dispose();
826
826
  }
827
827
  const startList = this.startList = ( (new GettingStartedIndexList({
828
- title: ( localize(7430, "Start")),
828
+ title: ( localize(7557, "Start")),
829
829
  klass: 'start-container',
830
830
  limit: 10,
831
831
  renderElement: renderStartEntry,
@@ -841,10 +841,10 @@ let GettingStartedPage = class GettingStartedPage extends EditorPane {
841
841
  const renderNewBadge = (category.newItems || category.newEntry) && !category.isFeatured;
842
842
  const newBadge = $('.new-badge', {});
843
843
  if (category.newEntry) {
844
- reset(newBadge, $('.new-category', {}, ( localize(7431, "New"))));
844
+ reset(newBadge, $('.new-category', {}, ( localize(7558, "New"))));
845
845
  }
846
846
  else if (category.newItems) {
847
- reset(newBadge, $('.new-items', {}, ( localize(7432, "Updated"))));
847
+ reset(newBadge, $('.new-items', {}, ( localize(7559, "Updated"))));
848
848
  }
849
849
  const featuredBadge = $('.featured-badge', {});
850
850
  const descriptionContent = $('.description-content', {});
@@ -860,9 +860,9 @@ let GettingStartedPage = class GettingStartedPage extends EditorPane {
860
860
  }, featuredBadge, $('.main-content', {}, this.iconWidgetFor(category), titleContent, renderNewBadge ? newBadge : $('.no-badge'), $('a.codicon.codicon-close.hide-category-button', {
861
861
  'tabindex': 0,
862
862
  'x-dispatch': 'hideCategory:' + category.id,
863
- 'title': ( localize(7433, "Hide")),
863
+ 'title': ( localize(7560, "Hide")),
864
864
  'role': 'button',
865
- 'aria-label': ( localize(7434, "Hide")),
865
+ 'aria-label': ( localize(7561, "Hide")),
866
866
  })), descriptionContent, $('.category-progress', { 'x-data-category-id': category.id, }, $('.progress-bar-outer', { 'role': 'progressbar' }, $('.progress-bar-inner'))));
867
867
  };
868
868
  if (this.gettingStartedList) {
@@ -888,10 +888,10 @@ let GettingStartedPage = class GettingStartedPage extends EditorPane {
888
888
  return rank;
889
889
  };
890
890
  const gettingStartedList = this.gettingStartedList = ( (new GettingStartedIndexList({
891
- title: ( localize(7435, "Walkthroughs")),
891
+ title: ( localize(7562, "Walkthroughs")),
892
892
  klass: 'getting-started',
893
893
  limit: 5,
894
- footer: $('span.button-link.see-all-walkthroughs', { 'x-dispatch': 'seeAllWalkthroughs', 'tabindex': 0 }, ( localize(7429, "More..."))),
894
+ footer: $('span.button-link.see-all-walkthroughs', { 'x-dispatch': 'seeAllWalkthroughs', 'tabindex': 0 }, ( localize(7556, "More..."))),
895
895
  renderElement: renderGetttingStaredWalkthrough,
896
896
  rankElement: rankWalkthrough,
897
897
  contextService: this.contextService,
@@ -944,10 +944,10 @@ let GettingStartedPage = class GettingStartedPage extends EditorPane {
944
944
  bar.style.width = `${progress}%`;
945
945
  element.parentElement.classList.toggle('no-progress', stats.stepsComplete === 0);
946
946
  if (stats.stepsTotal === stats.stepsComplete) {
947
- bar.title = ( localize(7436, "All {0} steps complete!", stats.stepsComplete));
947
+ bar.title = ( localize(7563, "All {0} steps complete!", stats.stepsComplete));
948
948
  }
949
949
  else {
950
- bar.title = ( localize(7437, "{0} of {1} steps complete", stats.stepsComplete, stats.stepsTotal));
950
+ bar.title = ( localize(7564, "{0} of {1} steps complete", stats.stepsComplete, stats.stepsTotal));
951
951
  }
952
952
  });
953
953
  }
@@ -1069,7 +1069,7 @@ let GettingStartedPage = class GettingStartedPage extends EditorPane {
1069
1069
  if (isCommand) {
1070
1070
  const keybindingLabel = this.getKeybindingLabel(command);
1071
1071
  if (keybindingLabel) {
1072
- container.appendChild($('span.shortcut-message', {}, ( localize(7438, 'Tip: Use keyboard shortcut ')), $('span.keybinding', {}, keybindingLabel)));
1072
+ container.appendChild($('span.shortcut-message', {}, ( localize(7565, 'Tip: Use keyboard shortcut ')), $('span.keybinding', {}, keybindingLabel)));
1073
1073
  }
1074
1074
  }
1075
1075
  this.detailsPageDisposables.add(button);
@@ -1159,7 +1159,7 @@ let GettingStartedPage = class GettingStartedPage extends EditorPane {
1159
1159
  reset(stepTitle, ...renderLabelWithIcons(step.title));
1160
1160
  const stepDescription = $('.step-container', {}, stepTitle, container);
1161
1161
  if (step.media.type === 'image') {
1162
- stepDescription.appendChild($('.image-description', { 'aria-label': ( localize(7439, "Image showing {0}", step.media.altText)) }));
1162
+ stepDescription.appendChild($('.image-description', { 'aria-label': ( localize(7566, "Image showing {0}", step.media.altText)) }));
1163
1163
  }
1164
1164
  return $('button.getting-started-step', {
1165
1165
  'x-dispatch': 'selectTask:' + step.id,
@@ -1179,8 +1179,8 @@ let GettingStartedPage = class GettingStartedPage extends EditorPane {
1179
1179
  }
1180
1180
  }));
1181
1181
  const showNextCategory = this.gettingStartedCategories.find(_category => _category.id === category.next);
1182
- const stepsContainer = $('.getting-started-detail-container', { 'role': 'list' }, stepListContainer, $('.done-next-container', {}, $('button.button-link.all-done', { 'x-dispatch': 'allDone' }, $('span.codicon.codicon-check-all'), ( localize(7440, "Mark Done"))), ...(showNextCategory
1183
- ? [$('button.button-link.next', { 'x-dispatch': 'nextSection' }, ( localize(7441, "Next Section")), $('span.codicon.codicon-arrow-right'))]
1182
+ const stepsContainer = $('.getting-started-detail-container', { 'role': 'list' }, stepListContainer, $('.done-next-container', {}, $('button.button-link.all-done', { 'x-dispatch': 'allDone' }, $('span.codicon.codicon-check-all'), ( localize(7567, "Mark Done"))), ...(showNextCategory
1183
+ ? [$('button.button-link.next', { 'x-dispatch': 'nextSection' }, ( localize(7568, "Next Section")), $('span.codicon.codicon-arrow-right'))]
1184
1184
  : [])));
1185
1185
  this.detailsScrollbar = this._register(( (new DomScrollableElement(stepsContainer, { className: 'steps-container' }))));
1186
1186
  const stepListComponent = this.detailsScrollbar.getDomNode();
@@ -1197,12 +1197,12 @@ let GettingStartedPage = class GettingStartedPage extends EditorPane {
1197
1197
  }
1198
1198
  buildTelemetryFooter(parent) {
1199
1199
  const mdRenderer = this.instantiationService.createInstance(MarkdownRenderer, {});
1200
- const privacyStatementCopy = ( localize(7442, "privacy statement"));
1200
+ const privacyStatementCopy = ( localize(7569, "privacy statement"));
1201
1201
  const privacyStatementButton = `[${privacyStatementCopy}](command:workbench.action.openPrivacyStatementUrl)`;
1202
- const optOutCopy = ( localize(7443, "opt out"));
1202
+ const optOutCopy = ( localize(7570, "opt out"));
1203
1203
  const optOutButton = `[${optOutCopy}](command:settings.filterByTelemetry)`;
1204
1204
  const text = ( localize(
1205
- 7444,
1205
+ 7571,
1206
1206
  "{0} collects usage data. Read our {1} and learn how to {2}.",
1207
1207
  this.productService.nameShort,
1208
1208
  privacyStatementButton,
@@ -1,12 +1,12 @@
1
1
  import { localize } from 'vscode/vscode/vs/nls';
2
2
  import { ExtensionsRegistry } from 'vscode/vscode/vs/workbench/services/extensions/common/extensionsRegistry';
3
3
 
4
- const titleTranslated = ( localize(7545, "Title"));
4
+ const titleTranslated = ( localize(7507, "Title"));
5
5
  const walkthroughsExtensionPoint = ExtensionsRegistry.registerExtensionPoint({
6
6
  extensionPoint: 'walkthroughs',
7
7
  jsonSchema: {
8
8
  description: ( localize(
9
- 7546,
9
+ 7508,
10
10
  "Contribute walkthroughs to help users getting started with your extension."
11
11
  )),
12
12
  type: 'array',
@@ -17,27 +17,27 @@ const walkthroughsExtensionPoint = ExtensionsRegistry.registerExtensionPoint({
17
17
  properties: {
18
18
  id: {
19
19
  type: 'string',
20
- description: ( localize(7547, "Unique identifier for this walkthrough.")),
20
+ description: ( localize(7509, "Unique identifier for this walkthrough.")),
21
21
  },
22
22
  title: {
23
23
  type: 'string',
24
- description: ( localize(7548, "Title of walkthrough."))
24
+ description: ( localize(7510, "Title of walkthrough."))
25
25
  },
26
26
  icon: {
27
27
  type: 'string',
28
28
  description: ( localize(
29
- 7549,
29
+ 7511,
30
30
  "Relative path to the icon of the walkthrough. The path is relative to the extension location. If not specified, the icon defaults to the extension icon if available."
31
31
  )),
32
32
  },
33
33
  description: {
34
34
  type: 'string',
35
- description: ( localize(7550, "Description of walkthrough."))
35
+ description: ( localize(7512, "Description of walkthrough."))
36
36
  },
37
37
  featuredFor: {
38
38
  type: 'array',
39
39
  description: ( localize(
40
- 7551,
40
+ 7513,
41
41
  "Walkthroughs that match one of these glob patterns appear as 'featured' in workspaces with the specified files. For example, a walkthrough for TypeScript projects might specify `tsconfig.json` here."
42
42
  )),
43
43
  items: {
@@ -47,13 +47,13 @@ const walkthroughsExtensionPoint = ExtensionsRegistry.registerExtensionPoint({
47
47
  when: {
48
48
  type: 'string',
49
49
  description: ( localize(
50
- 7552,
50
+ 7514,
51
51
  "Context key expression to control the visibility of this walkthrough."
52
52
  ))
53
53
  },
54
54
  steps: {
55
55
  type: 'array',
56
- description: ( localize(7553, "Steps to complete as part of this walkthrough.")),
56
+ description: ( localize(7515, "Steps to complete as part of this walkthrough.")),
57
57
  items: {
58
58
  type: 'object',
59
59
  required: ['id', 'title', 'media'],
@@ -68,18 +68,18 @@ const walkthroughsExtensionPoint = ExtensionsRegistry.registerExtensionPoint({
68
68
  id: {
69
69
  type: 'string',
70
70
  description: ( localize(
71
- 7554,
71
+ 7516,
72
72
  "Unique identifier for this step. This is used to keep track of which steps have been completed."
73
73
  )),
74
74
  },
75
75
  title: {
76
76
  type: 'string',
77
- description: ( localize(7555, "Title of step."))
77
+ description: ( localize(7517, "Title of step."))
78
78
  },
79
79
  description: {
80
80
  type: 'string',
81
81
  description: ( localize(
82
- 7556,
82
+ 7518,
83
83
  "Description of step. Supports ``preformatted``, __italic__, and **bold** text. Use markdown-style links for commands or external links: {0}, {1}, or {2}. Links on their own line will be rendered as buttons.",
84
84
  `[${titleTranslated}](command:myext.command)`,
85
85
  `[${titleTranslated}](command:toSide:myext.command)`,
@@ -88,7 +88,7 @@ const walkthroughsExtensionPoint = ExtensionsRegistry.registerExtensionPoint({
88
88
  },
89
89
  button: {
90
90
  deprecationMessage: ( localize(
91
- 7557,
91
+ 7519,
92
92
  "Deprecated. Use markdown links in the description instead, i.e. {0}, {1}, or {2}",
93
93
  `[${titleTranslated}](command:myext.command)`,
94
94
  `[${titleTranslated}](command:toSide:myext.command)`,
@@ -98,7 +98,7 @@ const walkthroughsExtensionPoint = ExtensionsRegistry.registerExtensionPoint({
98
98
  media: {
99
99
  type: 'object',
100
100
  description: ( localize(
101
- 7558,
101
+ 7520,
102
102
  "Media to show alongside this step, either an image or markdown content."
103
103
  )),
104
104
  oneOf: [
@@ -107,11 +107,11 @@ const walkthroughsExtensionPoint = ExtensionsRegistry.registerExtensionPoint({
107
107
  additionalProperties: false,
108
108
  properties: {
109
109
  path: {
110
- deprecationMessage: ( localize(7559, "Deprecated. Please use `image` or `markdown` instead"))
110
+ deprecationMessage: ( localize(7521, "Deprecated. Please use `image` or `markdown` instead"))
111
111
  },
112
112
  image: {
113
113
  description: ( localize(
114
- 7560,
114
+ 7522,
115
115
  "Path to an image - or object consisting of paths to light, dark, and hc images - relative to extension directory. Depending on context, the image will be displayed from 400px to 800px wide, with similar bounds on height. To support HIDPI displays, the image will be rendered at 1.5x scaling, for example a 900 physical pixels wide image will be displayed as 600 logical pixels wide."
116
116
  )),
117
117
  oneOf: [
@@ -124,25 +124,25 @@ const walkthroughsExtensionPoint = ExtensionsRegistry.registerExtensionPoint({
124
124
  properties: {
125
125
  dark: {
126
126
  description: ( localize(
127
- 7561,
127
+ 7523,
128
128
  "Path to the image for dark themes, relative to extension directory."
129
129
  )),
130
130
  type: 'string',
131
131
  },
132
132
  light: {
133
133
  description: ( localize(
134
- 7562,
134
+ 7524,
135
135
  "Path to the image for light themes, relative to extension directory."
136
136
  )),
137
137
  type: 'string',
138
138
  },
139
139
  hc: {
140
- description: ( localize(7563, "Path to the image for hc themes, relative to extension directory.")),
140
+ description: ( localize(7525, "Path to the image for hc themes, relative to extension directory.")),
141
141
  type: 'string',
142
142
  },
143
143
  hcLight: {
144
144
  description: ( localize(
145
- 7564,
145
+ 7526,
146
146
  "Path to the image for hc light themes, relative to extension directory."
147
147
  )),
148
148
  type: 'string',
@@ -154,7 +154,7 @@ const walkthroughsExtensionPoint = ExtensionsRegistry.registerExtensionPoint({
154
154
  altText: {
155
155
  type: 'string',
156
156
  description: ( localize(
157
- 7565,
157
+ 7527,
158
158
  "Alternate text to display when the image cannot be loaded or in screen readers."
159
159
  ))
160
160
  }
@@ -166,7 +166,7 @@ const walkthroughsExtensionPoint = ExtensionsRegistry.registerExtensionPoint({
166
166
  properties: {
167
167
  svg: {
168
168
  description: ( localize(
169
- 7566,
169
+ 7528,
170
170
  "Path to an svg, color tokens are supported in variables to support theming to match the workbench."
171
171
  )),
172
172
  type: 'string',
@@ -174,7 +174,7 @@ const walkthroughsExtensionPoint = ExtensionsRegistry.registerExtensionPoint({
174
174
  altText: {
175
175
  type: 'string',
176
176
  description: ( localize(
177
- 7565,
177
+ 7527,
178
178
  "Alternate text to display when the image cannot be loaded or in screen readers."
179
179
  ))
180
180
  },
@@ -185,10 +185,10 @@ const walkthroughsExtensionPoint = ExtensionsRegistry.registerExtensionPoint({
185
185
  additionalProperties: false,
186
186
  properties: {
187
187
  path: {
188
- deprecationMessage: ( localize(7559, "Deprecated. Please use `image` or `markdown` instead"))
188
+ deprecationMessage: ( localize(7521, "Deprecated. Please use `image` or `markdown` instead"))
189
189
  },
190
190
  markdown: {
191
- description: ( localize(7567, "Path to the markdown document, relative to extension directory.")),
191
+ description: ( localize(7529, "Path to the markdown document, relative to extension directory.")),
192
192
  type: 'string',
193
193
  }
194
194
  }
@@ -197,7 +197,7 @@ const walkthroughsExtensionPoint = ExtensionsRegistry.registerExtensionPoint({
197
197
  },
198
198
  completionEvents: {
199
199
  description: ( localize(
200
- 7568,
200
+ 7530,
201
201
  "Events that should trigger this step to become checked off. If empty or not defined, the step will check off when any of the step's buttons or links are clicked; if the step has no buttons or links it will check on when it is selected."
202
202
  )),
203
203
  type: 'array',
@@ -207,51 +207,51 @@ const walkthroughsExtensionPoint = ExtensionsRegistry.registerExtensionPoint({
207
207
  {
208
208
  label: 'onCommand',
209
209
  description: ( localize(
210
- 7569,
210
+ 7531,
211
211
  'Check off step when a given command is executed anywhere in VS Code.'
212
212
  )),
213
213
  body: 'onCommand:${1:commandId}'
214
214
  },
215
215
  {
216
216
  label: 'onLink',
217
- description: ( localize(7570, 'Check off step when a given link is opened via a walkthrough step.')),
217
+ description: ( localize(7532, 'Check off step when a given link is opened via a walkthrough step.')),
218
218
  body: 'onLink:${2:linkId}'
219
219
  },
220
220
  {
221
221
  label: 'onView',
222
- description: ( localize(7571, 'Check off step when a given view is opened')),
222
+ description: ( localize(7533, 'Check off step when a given view is opened')),
223
223
  body: 'onView:${2:viewId}'
224
224
  },
225
225
  {
226
226
  label: 'onSettingChanged',
227
- description: ( localize(7572, 'Check off step when a given setting is changed')),
227
+ description: ( localize(7534, 'Check off step when a given setting is changed')),
228
228
  body: 'onSettingChanged:${2:settingName}'
229
229
  },
230
230
  {
231
231
  label: 'onContext',
232
- description: ( localize(7573, 'Check off step when a context key expression is true.')),
232
+ description: ( localize(7535, 'Check off step when a context key expression is true.')),
233
233
  body: 'onContext:${2:key}'
234
234
  },
235
235
  {
236
236
  label: 'onExtensionInstalled',
237
237
  description: ( localize(
238
- 7574,
238
+ 7536,
239
239
  'Check off step when an extension with the given id is installed. If the extension is already installed, the step will start off checked.'
240
240
  )),
241
241
  body: 'onExtensionInstalled:${3:extensionId}'
242
242
  },
243
243
  {
244
244
  label: 'onStepSelected',
245
- description: ( localize(7575, 'Check off step as soon as it is selected.')),
245
+ description: ( localize(7537, 'Check off step as soon as it is selected.')),
246
246
  body: 'onStepSelected'
247
247
  },
248
248
  ]
249
249
  }
250
250
  },
251
251
  doneOn: {
252
- description: ( localize(7576, "Signal to mark step as complete.")),
252
+ description: ( localize(7538, "Signal to mark step as complete.")),
253
253
  deprecationMessage: ( localize(
254
- 7577,
254
+ 7539,
255
255
  "doneOn is deprecated. By default steps will be checked off when their buttons are clicked, to configure further use completionEvents"
256
256
  )),
257
257
  type: 'object',
@@ -259,14 +259,14 @@ const walkthroughsExtensionPoint = ExtensionsRegistry.registerExtensionPoint({
259
259
  defaultSnippets: [{ 'body': { command: '$1' } }],
260
260
  properties: {
261
261
  'command': {
262
- description: ( localize(7578, "Mark step done when the specified command is executed.")),
262
+ description: ( localize(7540, "Mark step done when the specified command is executed.")),
263
263
  type: 'string'
264
264
  }
265
265
  },
266
266
  },
267
267
  when: {
268
268
  type: 'string',
269
- description: ( localize(7579, "Context key expression to control the visibility of this step."))
269
+ description: ( localize(7541, "Context key expression to control the visibility of this step."))
270
270
  }
271
271
  }
272
272
  }
@@ -2,7 +2,7 @@ import { localize } from 'vscode/vscode/vs/nls';
2
2
  import { Codicon } from 'vscode/vscode/vs/base/common/codicons';
3
3
  import { registerIcon } from 'vscode/vscode/vs/platform/theme/common/iconRegistry';
4
4
 
5
- const gettingStartedUncheckedCodicon = registerIcon('getting-started-step-unchecked', Codicon.circleLargeOutline, ( localize(7453, "Used to represent walkthrough steps which have not been completed")));
6
- const gettingStartedCheckedCodicon = registerIcon('getting-started-step-checked', Codicon.passFilled, ( localize(7454, "Used to represent walkthrough steps which have been completed")));
5
+ const gettingStartedUncheckedCodicon = registerIcon('getting-started-step-unchecked', Codicon.circleLargeOutline, ( localize(7579, "Used to represent walkthrough steps which have not been completed")));
6
+ const gettingStartedCheckedCodicon = registerIcon('getting-started-step-checked', Codicon.passFilled, ( localize(7580, "Used to represent walkthrough steps which have been completed")));
7
7
 
8
8
  export { gettingStartedCheckedCodicon, gettingStartedUncheckedCodicon };
@@ -42,7 +42,7 @@ class GettingStartedInput extends EditorInput {
42
42
  this.showTelemetryNotice = !!options.showTelemetryNotice;
43
43
  }
44
44
  getName() {
45
- return ( localize(7445, "Welcome"));
45
+ return ( localize(7543, "Welcome"));
46
46
  }
47
47
  }
48
48
 
@@ -10,12 +10,12 @@ registerAction2(class extends Action2 {
10
10
  constructor() {
11
11
  super({
12
12
  id: 'resetGettingStartedProgress',
13
- category: ( localize2(7450, "Developer")),
14
- title: ( localize2(7451, "Reset Welcome Page Walkthrough Progress")),
13
+ category: ( localize2(7576, "Developer")),
14
+ title: ( localize2(7577, "Reset Welcome Page Walkthrough Progress")),
15
15
  f1: true,
16
16
  metadata: {
17
17
  description: ( localize2(
18
- 7452,
18
+ 7578,
19
19
  'Reset the progress of all Walkthrough steps on the Welcome Page to make them appear as if they are being viewed for the first time, providing a fresh start to the getting started experience.'
20
20
  )),
21
21
  }
@@ -34,7 +34,7 @@ import { getDefaultIconPath } from 'vscode/vscode/vs/workbench/services/extensio
34
34
  const HasMultipleNewFileEntries = ( (new RawContextKey('hasMultipleNewFileEntries', false)));
35
35
  const hiddenEntriesConfigurationKey = 'workbench.welcomePage.hiddenCategories';
36
36
  const walkthroughMetadataConfigurationKey = 'workbench.welcomePage.walkthroughMetadata';
37
- const BUILT_IN_SOURCE = ( localize(3240, "Built-In"));
37
+ const BUILT_IN_SOURCE = ( localize(3221, "Built-In"));
38
38
  const DAYS = 24 * 60 * 60 * 1000;
39
39
  const NEW_WALKTHROUGH_TIME = 7 * DAYS;
40
40
  let WalkthroughsService = class WalkthroughsService extends Disposable {
@@ -37,7 +37,7 @@ let StartupPageEditorResolverContribution = class StartupPageEditorResolverContr
37
37
  this.instantiationService = instantiationService;
38
38
  editorResolverService.registerEditor(`${GettingStartedInput.RESOURCE.scheme}:/**`, {
39
39
  id: GettingStartedInput.ID,
40
- label: ( localize(7446, "Welcome Page")),
40
+ label: ( localize(7572, "Welcome Page")),
41
41
  priority: RegisteredEditorPriority.builtin,
42
42
  }, {
43
43
  singlePerResource: false,
@@ -157,7 +157,7 @@ let StartupPageRunnerContribution = class StartupPageRunnerContribution {
157
157
  await Promise.all([
158
158
  this.commandService.executeCommand('markdown.showPreview', null, readmes.filter(isMarkDown), { locked: true }).catch(error => {
159
159
  this.notificationService.error(( localize(
160
- 7447,
160
+ 7573,
161
161
  'Could not open markdown preview: {0}.\n\nPlease make sure the markdown extension is enabled.',
162
162
  error.message
163
163
  )));
@@ -5,13 +5,13 @@ import { Codicon } from 'vscode/vscode/vs/base/common/codicons';
5
5
  import { registerIcon } from 'vscode/vscode/vs/platform/theme/common/iconRegistry';
6
6
  import { NotebookSetting } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookCommon';
7
7
 
8
- const setupIcon = registerIcon('getting-started-setup', Codicon.zap, ( localize(7455, "Icon used for the setup category of welcome page")));
9
- const beginnerIcon = registerIcon('getting-started-beginner', Codicon.lightbulb, ( localize(7456, "Icon used for the beginner category of welcome page")));
8
+ const setupIcon = registerIcon('getting-started-setup', Codicon.zap, ( localize(7417, "Icon used for the setup category of welcome page")));
9
+ const beginnerIcon = registerIcon('getting-started-beginner', Codicon.lightbulb, ( localize(7418, "Icon used for the beginner category of welcome page")));
10
10
  const startEntries = [
11
11
  {
12
12
  id: 'welcome.showNewFileEntries',
13
- title: ( localize(7457, "New File...")),
14
- description: ( localize(7458, "Open a new untitled text file, notebook, or custom editor.")),
13
+ title: ( localize(7419, "New File...")),
14
+ description: ( localize(7420, "Open a new untitled text file, notebook, or custom editor.")),
15
15
  icon: Codicon.newFile,
16
16
  content: {
17
17
  type: 'startEntry',
@@ -20,8 +20,8 @@ const startEntries = [
20
20
  },
21
21
  {
22
22
  id: 'topLevelOpenMac',
23
- title: ( localize(7459, "Open...")),
24
- description: ( localize(7460, "Open a file or folder to start working")),
23
+ title: ( localize(7421, "Open...")),
24
+ description: ( localize(7422, "Open a file or folder to start working")),
25
25
  icon: Codicon.folderOpened,
26
26
  when: '!isWeb && isMac',
27
27
  content: {
@@ -31,8 +31,8 @@ const startEntries = [
31
31
  },
32
32
  {
33
33
  id: 'topLevelOpenFile',
34
- title: ( localize(7461, "Open File...")),
35
- description: ( localize(7462, "Open a file to start working")),
34
+ title: ( localize(7423, "Open File...")),
35
+ description: ( localize(7424, "Open a file to start working")),
36
36
  icon: Codicon.goToFile,
37
37
  when: 'isWeb || !isMac',
38
38
  content: {
@@ -42,8 +42,8 @@ const startEntries = [
42
42
  },
43
43
  {
44
44
  id: 'topLevelOpenFolder',
45
- title: ( localize(7463, "Open Folder...")),
46
- description: ( localize(7464, "Open a folder to start working")),
45
+ title: ( localize(7425, "Open Folder...")),
46
+ description: ( localize(7426, "Open a folder to start working")),
47
47
  icon: Codicon.folderOpened,
48
48
  when: '!isWeb && !isMac',
49
49
  content: {
@@ -53,8 +53,8 @@ const startEntries = [
53
53
  },
54
54
  {
55
55
  id: 'topLevelOpenFolderWeb',
56
- title: ( localize(7463, "Open Folder...")),
57
- description: ( localize(7464, "Open a folder to start working")),
56
+ title: ( localize(7425, "Open Folder...")),
57
+ description: ( localize(7426, "Open a folder to start working")),
58
58
  icon: Codicon.folderOpened,
59
59
  when: '!openFolderWorkspaceSupport && workbenchState == \'workspace\'',
60
60
  content: {
@@ -64,8 +64,8 @@ const startEntries = [
64
64
  },
65
65
  {
66
66
  id: 'topLevelGitClone',
67
- title: ( localize(7465, "Clone Git Repository...")),
68
- description: ( localize(7466, "Clone a remote repository to a local folder")),
67
+ title: ( localize(7427, "Clone Git Repository...")),
68
+ description: ( localize(7428, "Clone a remote repository to a local folder")),
69
69
  when: 'config.git.enabled && !git.missing',
70
70
  icon: Codicon.sourceControl,
71
71
  content: {
@@ -75,9 +75,9 @@ const startEntries = [
75
75
  },
76
76
  {
77
77
  id: 'topLevelGitOpen',
78
- title: ( localize(7467, "Open Repository...")),
78
+ title: ( localize(7429, "Open Repository...")),
79
79
  description: ( localize(
80
- 7468,
80
+ 7430,
81
81
  "Connect to a remote repository or pull request to browse, search, edit, and commit"
82
82
  )),
83
83
  when: 'workspacePlatform == \'webworker\'',
@@ -89,8 +89,8 @@ const startEntries = [
89
89
  },
90
90
  {
91
91
  id: 'topLevelShowWalkthroughs',
92
- title: ( localize(7469, "Open a Walkthrough...")),
93
- description: ( localize(7470, "View a walkthrough on the editor or an extension")),
92
+ title: ( localize(7431, "Open a Walkthrough...")),
93
+ description: ( localize(7432, "View a walkthrough on the editor or an extension")),
94
94
  icon: Codicon.checklist,
95
95
  when: 'allWalkthroughsHidden',
96
96
  content: {
@@ -100,8 +100,8 @@ const startEntries = [
100
100
  },
101
101
  {
102
102
  id: 'topLevelRemoteOpen',
103
- title: ( localize(7471, "Connect to...")),
104
- description: ( localize(7472, "Connect to remote development workspaces.")),
103
+ title: ( localize(7433, "Connect to...")),
104
+ description: ( localize(7434, "Connect to remote development workspaces.")),
105
105
  when: '!isWeb',
106
106
  icon: Codicon.remote,
107
107
  content: {
@@ -111,8 +111,8 @@ const startEntries = [
111
111
  },
112
112
  {
113
113
  id: 'topLevelOpenTunnel',
114
- title: ( localize(7473, "Open Tunnel...")),
115
- description: ( localize(7474, "Connect to a remote machine through a Tunnel")),
114
+ title: ( localize(7435, "Open Tunnel...")),
115
+ description: ( localize(7436, "Connect to a remote machine through a Tunnel")),
116
116
  when: 'isWeb && showRemoteStartEntryInWeb',
117
117
  icon: Codicon.remote,
118
118
  content: {
@@ -125,8 +125,8 @@ const Button = (title, href) => `[${title}](${href})`;
125
125
  const walkthroughs = [
126
126
  {
127
127
  id: 'Setup',
128
- title: ( localize(7475, "Get Started with VS Code")),
129
- description: ( localize(7476, "Customize your editor, learn the basics, and start coding")),
128
+ title: ( localize(7437, "Get Started with VS Code")),
129
+ description: ( localize(7438, "Customize your editor, learn the basics, and start coding")),
130
130
  isFeatured: true,
131
131
  icon: setupIcon,
132
132
  when: '!isWeb',
@@ -136,11 +136,11 @@ const walkthroughs = [
136
136
  steps: [
137
137
  {
138
138
  id: 'pickColorTheme',
139
- title: ( localize(7477, "Choose your theme")),
139
+ title: ( localize(7439, "Choose your theme")),
140
140
  description: ( localize(
141
- 7478,
141
+ 7440,
142
142
  "The right theme helps you focus on your code, is easy on your eyes, and is simply more fun to use.\n{0}",
143
- Button(( localize(7479, "Browse Color Themes")), 'command:workbench.action.selectTheme')
143
+ Button(( localize(7441, "Browse Color Themes")), 'command:workbench.action.selectTheme')
144
144
  )),
145
145
  completionEvents: [
146
146
  'onSettingChanged:workbench.colorTheme',
@@ -150,11 +150,11 @@ const walkthroughs = [
150
150
  },
151
151
  {
152
152
  id: 'extensionsWeb',
153
- title: ( localize(7480, "Code with extensions")),
153
+ title: ( localize(7442, "Code with extensions")),
154
154
  description: ( localize(
155
- 7481,
155
+ 7443,
156
156
  "Extensions are VS Code's power-ups. A growing number are becoming available in the web.\n{0}",
157
- Button(( localize(7482, "Browse Popular Web Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
157
+ Button(( localize(7444, "Browse Popular Web Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
158
158
  )),
159
159
  when: 'workspacePlatform == \'webworker\'',
160
160
  media: {
@@ -163,11 +163,11 @@ const walkthroughs = [
163
163
  },
164
164
  {
165
165
  id: 'findLanguageExtensions',
166
- title: ( localize(7483, "Rich support for all your languages")),
166
+ title: ( localize(7445, "Rich support for all your languages")),
167
167
  description: ( localize(
168
- 7484,
168
+ 7446,
169
169
  "Code smarter with syntax highlighting, code completion, linting and debugging. While many languages are built-in, many more can be added as extensions.\n{0}",
170
- Button(( localize(7485, "Browse Language Extensions")), 'command:workbench.extensions.action.showLanguageExtensions')
170
+ Button(( localize(7447, "Browse Language Extensions")), 'command:workbench.extensions.action.showLanguageExtensions')
171
171
  )),
172
172
  when: 'workspacePlatform != \'webworker\'',
173
173
  media: {
@@ -176,11 +176,11 @@ const walkthroughs = [
176
176
  },
177
177
  {
178
178
  id: 'settings',
179
- title: ( localize(7486, "Tune your settings")),
179
+ title: ( localize(7448, "Tune your settings")),
180
180
  description: ( localize(
181
- 7487,
181
+ 7449,
182
182
  "Customize every aspect of VS Code and your extensions to your liking. Commonly used settings are listed first to get you started.\n{0}",
183
- Button(( localize(7488, "Open Settings")), 'command:toSide:workbench.action.openSettings')
183
+ Button(( localize(7450, "Open Settings")), 'command:toSide:workbench.action.openSettings')
184
184
  )),
185
185
  media: {
186
186
  type: 'svg', altText: 'VS Code Settings', path: 'settings.svg'
@@ -188,11 +188,11 @@ const walkthroughs = [
188
188
  },
189
189
  {
190
190
  id: 'settingsSync',
191
- title: ( localize(7489, "Sync settings across devices")),
191
+ title: ( localize(7451, "Sync settings across devices")),
192
192
  description: ( localize(
193
- 7490,
193
+ 7452,
194
194
  "Keep your essential customizations backed up and updated across all your devices.\n{0}",
195
- Button(( localize(7491, "Backup and Sync Settings")), 'command:workbench.userDataSync.actions.turnOn')
195
+ Button(( localize(7453, "Backup and Sync Settings")), 'command:workbench.userDataSync.actions.turnOn')
196
196
  )),
197
197
  when: 'syncStatus != uninitialized',
198
198
  completionEvents: ['onEvent:sync-enabled'],
@@ -202,21 +202,21 @@ const walkthroughs = [
202
202
  },
203
203
  {
204
204
  id: 'commandPaletteTask',
205
- title: ( localize(7492, "Unlock productivity with the Command Palette ")),
205
+ title: ( localize(7454, "Unlock productivity with the Command Palette ")),
206
206
  description: ( localize(
207
- 7493,
207
+ 7455,
208
208
  "Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
209
- Button(( localize(7494, "Open Command Palette")), 'command:workbench.action.showCommands')
209
+ Button(( localize(7456, "Open Command Palette")), 'command:workbench.action.showCommands')
210
210
  )),
211
211
  media: { type: 'svg', altText: 'Command Palette overlay for searching and executing commands.', path: 'commandPalette.svg' },
212
212
  },
213
213
  {
214
214
  id: 'pickAFolderTask-Mac',
215
- title: ( localize(7495, "Open up your code")),
215
+ title: ( localize(7457, "Open up your code")),
216
216
  description: ( localize(
217
- 7496,
217
+ 7458,
218
218
  "You're all set to start coding. Open a project folder to get your files into VS Code.\n{0}",
219
- Button(( localize(7497, "Pick a Folder")), 'command:workbench.action.files.openFileFolder')
219
+ Button(( localize(7459, "Pick a Folder")), 'command:workbench.action.files.openFileFolder')
220
220
  )),
221
221
  when: 'isMac && workspaceFolderCount == 0',
222
222
  media: {
@@ -225,11 +225,11 @@ const walkthroughs = [
225
225
  },
226
226
  {
227
227
  id: 'pickAFolderTask-Other',
228
- title: ( localize(7495, "Open up your code")),
228
+ title: ( localize(7457, "Open up your code")),
229
229
  description: ( localize(
230
- 7496,
230
+ 7458,
231
231
  "You're all set to start coding. Open a project folder to get your files into VS Code.\n{0}",
232
- Button(( localize(7497, "Pick a Folder")), 'command:workbench.action.files.openFolder')
232
+ Button(( localize(7459, "Pick a Folder")), 'command:workbench.action.files.openFolder')
233
233
  )),
234
234
  when: '!isMac && workspaceFolderCount == 0',
235
235
  media: {
@@ -238,11 +238,11 @@ const walkthroughs = [
238
238
  },
239
239
  {
240
240
  id: 'quickOpen',
241
- title: ( localize(7498, "Quickly navigate between your files")),
241
+ title: ( localize(7460, "Quickly navigate between your files")),
242
242
  description: ( localize(
243
- 7499,
243
+ 7461,
244
244
  "Navigate between files in an instant with one keystroke. Tip: Open multiple files by pressing the right arrow key.\n{0}",
245
- Button(( localize(7500, "Quick Open a File")), 'command:toSide:workbench.action.quickOpen')
245
+ Button(( localize(7462, "Quick Open a File")), 'command:toSide:workbench.action.quickOpen')
246
246
  )),
247
247
  when: 'workspaceFolderCount != 0',
248
248
  media: {
@@ -251,11 +251,11 @@ const walkthroughs = [
251
251
  },
252
252
  {
253
253
  id: 'videoTutorial',
254
- title: ( localize(7501, "Watch video tutorials")),
254
+ title: ( localize(7463, "Watch video tutorials")),
255
255
  description: ( localize(
256
- 7502,
256
+ 7464,
257
257
  "Watch the first in a series of short & practical video tutorials for VS Code's key features.\n{0}",
258
- Button(( localize(7503, "Watch Tutorial")), 'https://aka.ms/vscode-getting-started-video')
258
+ Button(( localize(7465, "Watch Tutorial")), 'https://aka.ms/vscode-getting-started-video')
259
259
  )),
260
260
  media: { type: 'svg', altText: 'VS Code Settings', path: 'learn.svg' },
261
261
  }
@@ -264,8 +264,8 @@ const walkthroughs = [
264
264
  },
265
265
  {
266
266
  id: 'SetupWeb',
267
- title: ( localize(7504, "Get Started with VS Code for the Web")),
268
- description: ( localize(7505, "Customize your editor, learn the basics, and start coding")),
267
+ title: ( localize(7466, "Get Started with VS Code for the Web")),
268
+ description: ( localize(7467, "Customize your editor, learn the basics, and start coding")),
269
269
  isFeatured: true,
270
270
  icon: setupIcon,
271
271
  when: 'isWeb',
@@ -275,11 +275,11 @@ const walkthroughs = [
275
275
  steps: [
276
276
  {
277
277
  id: 'pickColorThemeWeb',
278
- title: ( localize(7477, "Choose your theme")),
278
+ title: ( localize(7439, "Choose your theme")),
279
279
  description: ( localize(
280
- 7478,
280
+ 7440,
281
281
  "The right theme helps you focus on your code, is easy on your eyes, and is simply more fun to use.\n{0}",
282
- Button(( localize(7479, "Browse Color Themes")), 'command:workbench.action.selectTheme')
282
+ Button(( localize(7441, "Browse Color Themes")), 'command:workbench.action.selectTheme')
283
283
  )),
284
284
  completionEvents: [
285
285
  'onSettingChanged:workbench.colorTheme',
@@ -289,11 +289,11 @@ const walkthroughs = [
289
289
  },
290
290
  {
291
291
  id: 'menuBarWeb',
292
- title: ( localize(7506, "Just the right amount of UI")),
292
+ title: ( localize(7468, "Just the right amount of UI")),
293
293
  description: ( localize(
294
- 7507,
294
+ 7469,
295
295
  "The full menu bar is available in the dropdown menu to make room for your code. Toggle its appearance for faster access. \n{0}",
296
- Button(( localize(7508, "Toggle Menu Bar")), 'command:workbench.action.toggleMenuBar')
296
+ Button(( localize(7470, "Toggle Menu Bar")), 'command:workbench.action.toggleMenuBar')
297
297
  )),
298
298
  when: 'isWeb',
299
299
  media: {
@@ -302,11 +302,11 @@ const walkthroughs = [
302
302
  },
303
303
  {
304
304
  id: 'extensionsWebWeb',
305
- title: ( localize(7480, "Code with extensions")),
305
+ title: ( localize(7442, "Code with extensions")),
306
306
  description: ( localize(
307
- 7481,
307
+ 7443,
308
308
  "Extensions are VS Code's power-ups. A growing number are becoming available in the web.\n{0}",
309
- Button(( localize(7482, "Browse Popular Web Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
309
+ Button(( localize(7444, "Browse Popular Web Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
310
310
  )),
311
311
  when: 'workspacePlatform == \'webworker\'',
312
312
  media: {
@@ -315,11 +315,11 @@ const walkthroughs = [
315
315
  },
316
316
  {
317
317
  id: 'findLanguageExtensionsWeb',
318
- title: ( localize(7483, "Rich support for all your languages")),
318
+ title: ( localize(7445, "Rich support for all your languages")),
319
319
  description: ( localize(
320
- 7484,
320
+ 7446,
321
321
  "Code smarter with syntax highlighting, code completion, linting and debugging. While many languages are built-in, many more can be added as extensions.\n{0}",
322
- Button(( localize(7485, "Browse Language Extensions")), 'command:workbench.extensions.action.showLanguageExtensions')
322
+ Button(( localize(7447, "Browse Language Extensions")), 'command:workbench.extensions.action.showLanguageExtensions')
323
323
  )),
324
324
  when: 'workspacePlatform != \'webworker\'',
325
325
  media: {
@@ -328,11 +328,11 @@ const walkthroughs = [
328
328
  },
329
329
  {
330
330
  id: 'settingsSyncWeb',
331
- title: ( localize(7489, "Sync settings across devices")),
331
+ title: ( localize(7451, "Sync settings across devices")),
332
332
  description: ( localize(
333
- 7490,
333
+ 7452,
334
334
  "Keep your essential customizations backed up and updated across all your devices.\n{0}",
335
- Button(( localize(7491, "Backup and Sync Settings")), 'command:workbench.userDataSync.actions.turnOn')
335
+ Button(( localize(7453, "Backup and Sync Settings")), 'command:workbench.userDataSync.actions.turnOn')
336
336
  )),
337
337
  when: 'syncStatus != uninitialized',
338
338
  completionEvents: ['onEvent:sync-enabled'],
@@ -342,22 +342,22 @@ const walkthroughs = [
342
342
  },
343
343
  {
344
344
  id: 'commandPaletteTaskWeb',
345
- title: ( localize(7492, "Unlock productivity with the Command Palette ")),
345
+ title: ( localize(7454, "Unlock productivity with the Command Palette ")),
346
346
  description: ( localize(
347
- 7493,
347
+ 7455,
348
348
  "Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
349
- Button(( localize(7494, "Open Command Palette")), 'command:workbench.action.showCommands')
349
+ Button(( localize(7456, "Open Command Palette")), 'command:workbench.action.showCommands')
350
350
  )),
351
351
  media: { type: 'svg', altText: 'Command Palette overlay for searching and executing commands.', path: 'commandPalette.svg' },
352
352
  },
353
353
  {
354
354
  id: 'pickAFolderTask-WebWeb',
355
- title: ( localize(7495, "Open up your code")),
355
+ title: ( localize(7457, "Open up your code")),
356
356
  description: ( localize(
357
- 7509,
357
+ 7471,
358
358
  "You're all set to start coding. You can open a local project or a remote repository to get your files into VS Code.\n{0}\n{1}",
359
- Button(( localize(7510, "Open Folder")), 'command:workbench.action.addRootFolder'),
360
- Button(( localize(7511, "Open Repository")), 'command:remoteHub.openRepository')
359
+ Button(( localize(7472, "Open Folder")), 'command:workbench.action.addRootFolder'),
360
+ Button(( localize(7473, "Open Repository")), 'command:remoteHub.openRepository')
361
361
  )),
362
362
  when: 'workspaceFolderCount == 0',
363
363
  media: {
@@ -366,11 +366,11 @@ const walkthroughs = [
366
366
  },
367
367
  {
368
368
  id: 'quickOpenWeb',
369
- title: ( localize(7498, "Quickly navigate between your files")),
369
+ title: ( localize(7460, "Quickly navigate between your files")),
370
370
  description: ( localize(
371
- 7499,
371
+ 7461,
372
372
  "Navigate between files in an instant with one keystroke. Tip: Open multiple files by pressing the right arrow key.\n{0}",
373
- Button(( localize(7500, "Quick Open a File")), 'command:toSide:workbench.action.quickOpen')
373
+ Button(( localize(7462, "Quick Open a File")), 'command:toSide:workbench.action.quickOpen')
374
374
  )),
375
375
  when: 'workspaceFolderCount != 0',
376
376
  media: {
@@ -383,19 +383,19 @@ const walkthroughs = [
383
383
  {
384
384
  id: 'Beginner',
385
385
  isFeatured: false,
386
- title: ( localize(7512, "Learn the Fundamentals")),
386
+ title: ( localize(7474, "Learn the Fundamentals")),
387
387
  icon: beginnerIcon,
388
- description: ( localize(7513, "Get an overview of the most essential features")),
388
+ description: ( localize(7475, "Get an overview of the most essential features")),
389
389
  content: {
390
390
  type: 'steps',
391
391
  steps: [
392
392
  {
393
393
  id: 'extensions',
394
- title: ( localize(7480, "Code with extensions")),
394
+ title: ( localize(7442, "Code with extensions")),
395
395
  description: ( localize(
396
- 7514,
396
+ 7476,
397
397
  "Extensions are VS Code's power-ups. They range from handy productivity hacks, expanding out-of-the-box features, to adding completely new capabilities.\n{0}",
398
- Button(( localize(7515, "Browse Popular Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
398
+ Button(( localize(7477, "Browse Popular Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
399
399
  )),
400
400
  when: 'workspacePlatform != \'webworker\'',
401
401
  media: {
@@ -404,11 +404,11 @@ const walkthroughs = [
404
404
  },
405
405
  {
406
406
  id: 'terminal',
407
- title: ( localize(7516, "Built-in terminal")),
407
+ title: ( localize(7478, "Built-in terminal")),
408
408
  description: ( localize(
409
- 7517,
409
+ 7479,
410
410
  "Quickly run shell commands and monitor build output, right next to your code.\n{0}",
411
- Button(( localize(7518, "Open Terminal")), 'command:workbench.action.terminal.toggleTerminal')
411
+ Button(( localize(7480, "Open Terminal")), 'command:workbench.action.terminal.toggleTerminal')
412
412
  )),
413
413
  when: 'workspacePlatform != \'webworker\' && remoteName != codespaces && !terminalIsOpen',
414
414
  media: {
@@ -417,11 +417,11 @@ const walkthroughs = [
417
417
  },
418
418
  {
419
419
  id: 'debugging',
420
- title: ( localize(7519, "Watch your code in action")),
420
+ title: ( localize(7481, "Watch your code in action")),
421
421
  description: ( localize(
422
- 7520,
422
+ 7482,
423
423
  "Accelerate your edit, build, test, and debug loop by setting up a launch configuration.\n{0}",
424
- Button(( localize(7521, "Run your Project")), 'command:workbench.action.debug.selectandstart')
424
+ Button(( localize(7483, "Run your Project")), 'command:workbench.action.debug.selectandstart')
425
425
  )),
426
426
  when: 'workspacePlatform != \'webworker\' && workspaceFolderCount != 0',
427
427
  media: {
@@ -430,11 +430,11 @@ const walkthroughs = [
430
430
  },
431
431
  {
432
432
  id: 'scmClone',
433
- title: ( localize(7522, "Track your code with Git")),
433
+ title: ( localize(7484, "Track your code with Git")),
434
434
  description: ( localize(
435
- 7523,
435
+ 7485,
436
436
  "Set up the built-in version control for your project to track your changes and collaborate with others.\n{0}",
437
- Button(( localize(7524, "Clone Repository")), 'command:git.clone')
437
+ Button(( localize(7486, "Clone Repository")), 'command:git.clone')
438
438
  )),
439
439
  when: 'config.git.enabled && !git.missing && workspaceFolderCount == 0',
440
440
  media: {
@@ -443,11 +443,11 @@ const walkthroughs = [
443
443
  },
444
444
  {
445
445
  id: 'scmSetup',
446
- title: ( localize(7522, "Track your code with Git")),
446
+ title: ( localize(7484, "Track your code with Git")),
447
447
  description: ( localize(
448
- 7525,
448
+ 7487,
449
449
  "Set up the built-in version control for your project to track your changes and collaborate with others.\n{0}",
450
- Button(( localize(7526, "Initialize Git Repository")), 'command:git.init')
450
+ Button(( localize(7488, "Initialize Git Repository")), 'command:git.init')
451
451
  )),
452
452
  when: 'config.git.enabled && !git.missing && workspaceFolderCount != 0 && gitOpenRepositoryCount == 0',
453
453
  media: {
@@ -456,11 +456,11 @@ const walkthroughs = [
456
456
  },
457
457
  {
458
458
  id: 'scm',
459
- title: ( localize(7522, "Track your code with Git")),
459
+ title: ( localize(7484, "Track your code with Git")),
460
460
  description: ( localize(
461
- 7527,
461
+ 7489,
462
462
  "No more looking up Git commands! Git and GitHub workflows are seamlessly integrated.\n{0}",
463
- Button(( localize(7528, "Open Source Control")), 'command:workbench.view.scm')
463
+ Button(( localize(7490, "Open Source Control")), 'command:workbench.view.scm')
464
464
  )),
465
465
  when: 'config.git.enabled && !git.missing && workspaceFolderCount != 0 && gitOpenRepositoryCount != 0 && activeViewlet != \'workbench.view.scm\'',
466
466
  media: {
@@ -469,11 +469,11 @@ const walkthroughs = [
469
469
  },
470
470
  {
471
471
  id: 'installGit',
472
- title: ( localize(7529, "Install Git")),
472
+ title: ( localize(7491, "Install Git")),
473
473
  description: ( localize(
474
- 7530,
474
+ 7492,
475
475
  "Install Git to track changes in your projects.\n{0}\n{1}Reload window{2} after installation to complete Git setup.",
476
- Button(( localize(7531, "Install Git")), 'https://aka.ms/vscode-install-git'),
476
+ Button(( localize(7493, "Install Git")), 'https://aka.ms/vscode-install-git'),
477
477
  '[',
478
478
  '](command:workbench.action.reloadWindow)'
479
479
  )),
@@ -487,12 +487,12 @@ const walkthroughs = [
487
487
  },
488
488
  {
489
489
  id: 'tasks',
490
- title: ( localize(7532, "Automate your project tasks")),
490
+ title: ( localize(7494, "Automate your project tasks")),
491
491
  when: 'workspaceFolderCount != 0 && workspacePlatform != \'webworker\'',
492
492
  description: ( localize(
493
- 7533,
493
+ 7495,
494
494
  "Create tasks for your common workflows and enjoy the integrated experience of running scripts and automatically checking results.\n{0}",
495
- Button(( localize(7534, "Run Auto-detected Tasks")), 'command:workbench.action.tasks.runTask')
495
+ Button(( localize(7496, "Run Auto-detected Tasks")), 'command:workbench.action.tasks.runTask')
496
496
  )),
497
497
  media: {
498
498
  type: 'svg', altText: 'Task runner.', path: 'runTask.svg',
@@ -500,11 +500,11 @@ const walkthroughs = [
500
500
  },
501
501
  {
502
502
  id: 'shortcuts',
503
- title: ( localize(7535, "Customize your shortcuts")),
503
+ title: ( localize(7497, "Customize your shortcuts")),
504
504
  description: ( localize(
505
- 7536,
505
+ 7498,
506
506
  "Once you have discovered your favorite commands, create custom keyboard shortcuts for instant access.\n{0}",
507
- Button(( localize(7537, "Keyboard Shortcuts")), 'command:toSide:workbench.action.openGlobalKeybindings')
507
+ Button(( localize(7499, "Keyboard Shortcuts")), 'command:toSide:workbench.action.openGlobalKeybindings')
508
508
  )),
509
509
  media: {
510
510
  type: 'svg', altText: 'Interactive shortcuts.', path: 'shortcuts.svg',
@@ -512,12 +512,12 @@ const walkthroughs = [
512
512
  },
513
513
  {
514
514
  id: 'workspaceTrust',
515
- title: ( localize(7538, "Safely browse and edit code")),
515
+ title: ( localize(7500, "Safely browse and edit code")),
516
516
  description: ( localize(
517
- 7539,
517
+ 7501,
518
518
  "{0} lets you decide whether your project folders should **allow or restrict** automatic code execution __(required for extensions, debugging, etc)__.\nOpening a file/folder will prompt to grant trust. You can always {1} later.",
519
- Button(( localize(7540, "Workspace Trust")), 'https://github.com/microsoft/vscode-docs/blob/workspaceTrust/docs/editor/workspace-trust.md'),
520
- Button(( localize(7541, "enable trust")), 'command:toSide:workbench.action.manageTrustedDomain')
519
+ Button(( localize(7502, "Workspace Trust")), 'https://github.com/microsoft/vscode-docs/blob/workspaceTrust/docs/editor/workspace-trust.md'),
520
+ Button(( localize(7503, "enable trust")), 'command:toSide:workbench.action.manageTrustedDomain')
521
521
  )),
522
522
  when: 'workspacePlatform != \'webworker\' && !isWorkspaceTrusted && workspaceFolderCount == 0',
523
523
  media: {
@@ -529,7 +529,7 @@ const walkthroughs = [
529
529
  },
530
530
  {
531
531
  id: 'notebooks',
532
- title: ( localize(7542, "Customize Notebooks")),
532
+ title: ( localize(7504, "Customize Notebooks")),
533
533
  description: '',
534
534
  icon: setupIcon,
535
535
  isFeatured: false,
@@ -540,8 +540,8 @@ const walkthroughs = [
540
540
  {
541
541
  completionEvents: ['onCommand:notebook.setProfile'],
542
542
  id: 'notebookProfile',
543
- title: ( localize(7543, "Select the layout for your notebooks")),
544
- description: ( localize(7544, "Get notebooks to feel just the way you prefer")),
543
+ title: ( localize(7505, "Select the layout for your notebooks")),
544
+ description: ( localize(7506, "Get notebooks to feel just the way you prefer")),
545
545
  when: 'userHasOpenedNotebook',
546
546
  media: {
547
547
  type: 'markdown', path: 'notebookProfile'