@codingame/monaco-vscode-walkthrough-service-override 21.3.1 → 21.3.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.
Files changed (19) hide show
  1. package/package.json +10 -10
  2. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.contribution.js +20 -20
  3. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.js +36 -36
  4. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedAccessibleView.js +3 -3
  5. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedColors.js +7 -7
  6. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedExtensionPoint.js +37 -37
  7. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedIcons.js +2 -2
  8. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedInput.js +1 -1
  9. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService._contribution.js +3 -3
  10. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService.js +1 -1
  11. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/startupPage.js +2 -2
  12. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent.js +144 -144
  13. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/notebookProfile.js +3 -3
  14. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/theme_picker.js +5 -5
  15. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/theme_picker_small.js +4 -4
  16. package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/editor/editorWalkThrough.js +3 -3
  17. package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThrough.contribution.js +2 -2
  18. package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughPart.js +2 -2
  19. package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/common/walkThroughUtils.js +1 -1
@@ -27,13 +27,13 @@ gettingStartedContentRegistry.registerProvider('vs/workbench/contrib/welcomeGett
27
27
  gettingStartedContentRegistry.registerProvider('vs/workbench/contrib/welcomeGettingStarted/common/media/theme_picker_small', themePickerSmallContent);
28
28
  gettingStartedContentRegistry.registerProvider('vs/workbench/contrib/welcomeGettingStarted/common/media/notebookProfile', notebookProfileContent);
29
29
  gettingStartedContentRegistry.registerProvider('vs/workbench/contrib/welcomeGettingStarted/common/media/empty', () => '');
30
- const setupIcon = registerIcon('getting-started-setup', Codicon.zap, ( localize(12618, "Icon used for the setup category of welcome page")));
31
- const beginnerIcon = registerIcon('getting-started-beginner', Codicon.lightbulb, ( localize(12619, "Icon used for the beginner category of welcome page")));
30
+ const setupIcon = registerIcon('getting-started-setup', Codicon.zap, ( localize(12631, "Icon used for the setup category of welcome page")));
31
+ const beginnerIcon = registerIcon('getting-started-beginner', Codicon.lightbulb, ( localize(12632, "Icon used for the beginner category of welcome page")));
32
32
  const startEntries = [
33
33
  {
34
34
  id: 'welcome.showNewFileEntries',
35
- title: ( localize(12620, "New File...")),
36
- description: ( localize(12621, "Open a new untitled text file, notebook, or custom editor.")),
35
+ title: ( localize(12633, "New File...")),
36
+ description: ( localize(12634, "Open a new untitled text file, notebook, or custom editor.")),
37
37
  icon: Codicon.newFile,
38
38
  content: {
39
39
  type: 'startEntry',
@@ -42,8 +42,8 @@ const startEntries = [
42
42
  },
43
43
  {
44
44
  id: 'topLevelOpenMac',
45
- title: ( localize(12622, "Open...")),
46
- description: ( localize(12623, "Open a file or folder to start working")),
45
+ title: ( localize(12635, "Open...")),
46
+ description: ( localize(12636, "Open a file or 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: 'topLevelOpenFile',
56
- title: ( localize(12624, "Open File...")),
57
- description: ( localize(12625, "Open a file to start working")),
56
+ title: ( localize(12637, "Open File...")),
57
+ description: ( localize(12638, "Open a file to start working")),
58
58
  icon: Codicon.goToFile,
59
59
  when: 'isWeb || !isMac',
60
60
  content: {
@@ -64,8 +64,8 @@ const startEntries = [
64
64
  },
65
65
  {
66
66
  id: 'topLevelOpenFolder',
67
- title: ( localize(12626, "Open Folder...")),
68
- description: ( localize(12627, "Open a folder to start working")),
67
+ title: ( localize(12639, "Open Folder...")),
68
+ description: ( localize(12640, "Open a folder to start working")),
69
69
  icon: Codicon.folderOpened,
70
70
  when: '!isWeb && !isMac',
71
71
  content: {
@@ -75,8 +75,8 @@ const startEntries = [
75
75
  },
76
76
  {
77
77
  id: 'topLevelOpenFolderWeb',
78
- title: ( localize(12626, "Open Folder...")),
79
- description: ( localize(12627, "Open a folder to start working")),
78
+ title: ( localize(12639, "Open Folder...")),
79
+ description: ( localize(12640, "Open a folder to start working")),
80
80
  icon: Codicon.folderOpened,
81
81
  when: '!openFolderWorkspaceSupport && workbenchState == \'workspace\'',
82
82
  content: {
@@ -86,8 +86,8 @@ const startEntries = [
86
86
  },
87
87
  {
88
88
  id: 'topLevelGitClone',
89
- title: ( localize(12628, "Clone Git Repository...")),
90
- description: ( localize(12629, "Clone a remote repository to a local folder")),
89
+ title: ( localize(12641, "Clone Git Repository...")),
90
+ description: ( localize(12642, "Clone a remote repository to a local folder")),
91
91
  when: 'config.git.enabled && !git.missing',
92
92
  icon: Codicon.sourceControl,
93
93
  content: {
@@ -97,9 +97,9 @@ const startEntries = [
97
97
  },
98
98
  {
99
99
  id: 'topLevelGitOpen',
100
- title: ( localize(12630, "Open Repository...")),
100
+ title: ( localize(12643, "Open Repository...")),
101
101
  description: ( localize(
102
- 12631,
102
+ 12644,
103
103
  "Connect to a remote repository or pull request to browse, search, edit, and commit"
104
104
  )),
105
105
  when: 'workspacePlatform == \'webworker\'',
@@ -111,8 +111,8 @@ const startEntries = [
111
111
  },
112
112
  {
113
113
  id: 'topLevelRemoteOpen',
114
- title: ( localize(12632, "Connect to...")),
115
- description: ( localize(12633, "Connect to remote development workspaces.")),
114
+ title: ( localize(12645, "Connect to...")),
115
+ description: ( localize(12646, "Connect to remote development workspaces.")),
116
116
  when: '!isWeb',
117
117
  icon: Codicon.remote,
118
118
  content: {
@@ -122,8 +122,8 @@ const startEntries = [
122
122
  },
123
123
  {
124
124
  id: 'topLevelOpenTunnel',
125
- title: ( localize(12634, "Open Tunnel...")),
126
- description: ( localize(12635, "Connect to a remote machine through a Tunnel")),
125
+ title: ( localize(12647, "Open Tunnel...")),
126
+ description: ( localize(12648, "Connect to a remote machine through a Tunnel")),
127
127
  when: 'isWeb && showRemoteStartEntryInWeb',
128
128
  icon: Codicon.remote,
129
129
  content: {
@@ -133,8 +133,8 @@ const startEntries = [
133
133
  },
134
134
  {
135
135
  id: 'topLevelNewWorkspaceChat',
136
- title: ( localize(12636, "Generate New Workspace...")),
137
- description: ( localize(12637, "Chat to create a new workspace")),
136
+ title: ( localize(12649, "Generate New Workspace...")),
137
+ description: ( localize(12650, "Chat to create a new workspace")),
138
138
  icon: Codicon.chatSparkle,
139
139
  when: '!isWeb && !chatSetupHidden',
140
140
  content: {
@@ -144,15 +144,15 @@ const startEntries = [
144
144
  },
145
145
  ];
146
146
  const Button = (title, href) => `[${title}](${href})`;
147
- const CopilotStepTitle = ( localize(12638, "Use AI features with Copilot for free"));
147
+ const CopilotStepTitle = ( localize(12651, "Use AI features with Copilot for free"));
148
148
  const CopilotDescription = ( localize(
149
- 12639,
149
+ 12652,
150
150
  "You can use [Copilot]({0}) to generate code across multiple files, fix errors, ask questions about your code and much more using natural language.",
151
151
  defaultChat.documentationUrl ?? ''
152
152
  ));
153
- const CopilotSignedOutButton = Button(( localize(12640, "Set up Copilot")), `command:workbench.action.chat.triggerSetup`);
154
- const CopilotSignedInButton = Button(( localize(12641, "Set up Copilot")), `command:workbench.action.chat.triggerSetup`);
155
- const CopilotCompleteButton = Button(( localize(12642, "Chat with Copilot")), 'command:workbench.action.chat.open');
153
+ const CopilotSignedOutButton = Button(( localize(12653, "Set up Copilot")), `command:workbench.action.chat.triggerSetup`);
154
+ const CopilotSignedInButton = Button(( localize(12654, "Set up Copilot")), `command:workbench.action.chat.triggerSetup`);
155
+ const CopilotCompleteButton = Button(( localize(12655, "Chat with Copilot")), 'command:workbench.action.chat.open');
156
156
  function createCopilotSetupStep(id, button, when, includeTerms) {
157
157
  const description = includeTerms ?
158
158
  `${CopilotDescription}\n\n${button}` :
@@ -170,12 +170,12 @@ function createCopilotSetupStep(id, button, when, includeTerms) {
170
170
  const walkthroughs = [
171
171
  {
172
172
  id: 'Setup',
173
- title: ( localize(12643, "Get started with VS Code")),
174
- description: ( localize(12644, "Customize your editor, learn the basics, and start coding")),
173
+ title: ( localize(12656, "Get started with VS Code")),
174
+ description: ( localize(12657, "Customize your editor, learn the basics, and start coding")),
175
175
  isFeatured: true,
176
176
  icon: setupIcon,
177
177
  when: '!isWeb',
178
- walkthroughPageTitle: ( localize(12645, 'Setup VS Code')),
178
+ walkthroughPageTitle: ( localize(12658, 'Setup VS Code')),
179
179
  next: 'Beginner',
180
180
  content: {
181
181
  type: 'steps',
@@ -185,11 +185,11 @@ const walkthroughs = [
185
185
  createCopilotSetupStep('CopilotSetupSignedIn', CopilotSignedInButton, '!chatEntitlementSignedOut && (!chatSetupInstalled || chatSetupDisabled || chatPlanCanSignUp)', true),
186
186
  {
187
187
  id: 'pickColorTheme',
188
- title: ( localize(12646, "Choose your theme")),
188
+ title: ( localize(12659, "Choose your theme")),
189
189
  description: ( localize(
190
- 12647,
190
+ 12660,
191
191
  "The right theme helps you focus on your code, is easy on your eyes, and is simply more fun to use.\n{0}",
192
- Button(( localize(12648, "Browse Color Themes")), 'command:workbench.action.selectTheme')
192
+ Button(( localize(12661, "Browse Color Themes")), 'command:workbench.action.selectTheme')
193
193
  )),
194
194
  completionEvents: [
195
195
  'onSettingChanged:workbench.colorTheme',
@@ -199,11 +199,11 @@ const walkthroughs = [
199
199
  },
200
200
  {
201
201
  id: 'videoTutorial',
202
- title: ( localize(12649, "Watch video tutorials")),
202
+ title: ( localize(12662, "Watch video tutorials")),
203
203
  description: ( localize(
204
- 12650,
204
+ 12663,
205
205
  "Watch the first in a series of short & practical video tutorials for VS Code's key features.\n{0}",
206
- Button(( localize(12651, "Watch Tutorial")), 'https://aka.ms/vscode-getting-started-video')
206
+ Button(( localize(12664, "Watch Tutorial")), 'https://aka.ms/vscode-getting-started-video')
207
207
  )),
208
208
  media: { type: 'svg', altText: 'VS Code Settings', path: 'learn.svg' },
209
209
  }
@@ -212,23 +212,23 @@ const walkthroughs = [
212
212
  },
213
213
  {
214
214
  id: 'SetupWeb',
215
- title: ( localize(12652, "Get Started with VS Code for the Web")),
216
- description: ( localize(12653, "Customize your editor, learn the basics, and start coding")),
215
+ title: ( localize(12665, "Get Started with VS Code for the Web")),
216
+ description: ( localize(12666, "Customize your editor, learn the basics, and start coding")),
217
217
  isFeatured: true,
218
218
  icon: setupIcon,
219
219
  when: 'isWeb',
220
220
  next: 'Beginner',
221
- walkthroughPageTitle: ( localize(12654, 'Setup VS Code Web')),
221
+ walkthroughPageTitle: ( localize(12667, 'Setup VS Code Web')),
222
222
  content: {
223
223
  type: 'steps',
224
224
  steps: [
225
225
  {
226
226
  id: 'pickColorThemeWeb',
227
- title: ( localize(12646, "Choose your theme")),
227
+ title: ( localize(12659, "Choose your theme")),
228
228
  description: ( localize(
229
- 12647,
229
+ 12660,
230
230
  "The right theme helps you focus on your code, is easy on your eyes, and is simply more fun to use.\n{0}",
231
- Button(( localize(12648, "Browse Color Themes")), 'command:workbench.action.selectTheme')
231
+ Button(( localize(12661, "Browse Color Themes")), 'command:workbench.action.selectTheme')
232
232
  )),
233
233
  completionEvents: [
234
234
  'onSettingChanged:workbench.colorTheme',
@@ -238,11 +238,11 @@ const walkthroughs = [
238
238
  },
239
239
  {
240
240
  id: 'menuBarWeb',
241
- title: ( localize(12655, "Just the right amount of UI")),
241
+ title: ( localize(12668, "Just the right amount of UI")),
242
242
  description: ( localize(
243
- 12656,
243
+ 12669,
244
244
  "The full menu bar is available in the dropdown menu to make room for your code. Toggle its appearance for faster access. \n{0}",
245
- Button(( localize(12657, "Toggle Menu Bar")), 'command:workbench.action.toggleMenuBar')
245
+ Button(( localize(12670, "Toggle Menu Bar")), 'command:workbench.action.toggleMenuBar')
246
246
  )),
247
247
  when: 'isWeb',
248
248
  media: {
@@ -251,11 +251,11 @@ const walkthroughs = [
251
251
  },
252
252
  {
253
253
  id: 'extensionsWebWeb',
254
- title: ( localize(12658, "Code with extensions")),
254
+ title: ( localize(12671, "Code with extensions")),
255
255
  description: ( localize(
256
- 12659,
256
+ 12672,
257
257
  "Extensions are VS Code's power-ups. A growing number are becoming available in the web.\n{0}",
258
- Button(( localize(12660, "Browse Popular Web Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
258
+ Button(( localize(12673, "Browse Popular Web Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
259
259
  )),
260
260
  when: 'workspacePlatform == \'webworker\'',
261
261
  media: {
@@ -264,11 +264,11 @@ const walkthroughs = [
264
264
  },
265
265
  {
266
266
  id: 'findLanguageExtensionsWeb',
267
- title: ( localize(12661, "Rich support for all your languages")),
267
+ title: ( localize(12674, "Rich support for all your languages")),
268
268
  description: ( localize(
269
- 12662,
269
+ 12675,
270
270
  "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}",
271
- Button(( localize(12663, "Browse Language Extensions")), 'command:workbench.extensions.action.showLanguageExtensions')
271
+ Button(( localize(12676, "Browse Language Extensions")), 'command:workbench.extensions.action.showLanguageExtensions')
272
272
  )),
273
273
  when: 'workspacePlatform != \'webworker\'',
274
274
  media: {
@@ -277,11 +277,11 @@ const walkthroughs = [
277
277
  },
278
278
  {
279
279
  id: 'settingsSyncWeb',
280
- title: ( localize(12664, "Sync settings across devices")),
280
+ title: ( localize(12677, "Sync settings across devices")),
281
281
  description: ( localize(
282
- 12665,
282
+ 12678,
283
283
  "Keep your essential customizations backed up and updated across all your devices.\n{0}",
284
- Button(( localize(12666, "Backup and Sync Settings")), 'command:workbench.userDataSync.actions.turnOn')
284
+ Button(( localize(12679, "Backup and Sync Settings")), 'command:workbench.userDataSync.actions.turnOn')
285
285
  )),
286
286
  when: 'syncStatus != uninitialized',
287
287
  completionEvents: ['onEvent:sync-enabled'],
@@ -291,22 +291,22 @@ const walkthroughs = [
291
291
  },
292
292
  {
293
293
  id: 'commandPaletteTaskWeb',
294
- title: ( localize(12667, "Unlock productivity with the Command Palette ")),
294
+ title: ( localize(12680, "Unlock productivity with the Command Palette ")),
295
295
  description: ( localize(
296
- 12668,
296
+ 12681,
297
297
  "Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
298
- Button(( localize(12669, "Open Command Palette")), 'command:workbench.action.showCommands')
298
+ Button(( localize(12682, "Open Command Palette")), 'command:workbench.action.showCommands')
299
299
  )),
300
300
  media: { type: 'svg', altText: 'Command Palette overlay for searching and executing commands.', path: 'commandPalette.svg' },
301
301
  },
302
302
  {
303
303
  id: 'pickAFolderTask-WebWeb',
304
- title: ( localize(12670, "Open up your code")),
304
+ title: ( localize(12683, "Open up your code")),
305
305
  description: ( localize(
306
- 12671,
306
+ 12684,
307
307
  "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}",
308
- Button(( localize(12672, "Open Folder")), 'command:workbench.action.addRootFolder'),
309
- Button(( localize(12673, "Open Repository")), 'command:remoteHub.openRepository')
308
+ Button(( localize(12685, "Open Folder")), 'command:workbench.action.addRootFolder'),
309
+ Button(( localize(12686, "Open Repository")), 'command:remoteHub.openRepository')
310
310
  )),
311
311
  when: 'workspaceFolderCount == 0',
312
312
  media: {
@@ -315,11 +315,11 @@ const walkthroughs = [
315
315
  },
316
316
  {
317
317
  id: 'quickOpenWeb',
318
- title: ( localize(12674, "Quickly navigate between your files")),
318
+ title: ( localize(12687, "Quickly navigate between your files")),
319
319
  description: ( localize(
320
- 12675,
320
+ 12688,
321
321
  "Navigate between files in an instant with one keystroke. Tip: Open multiple files by pressing the right arrow key.\n{0}",
322
- Button(( localize(12676, "Quick Open a File")), 'command:toSide:workbench.action.quickOpen')
322
+ Button(( localize(12689, "Quick Open a File")), 'command:toSide:workbench.action.quickOpen')
323
323
  )),
324
324
  when: 'workspaceFolderCount != 0',
325
325
  media: {
@@ -331,26 +331,26 @@ const walkthroughs = [
331
331
  },
332
332
  {
333
333
  id: 'SetupAccessibility',
334
- title: ( localize(12677, "Get Started with Accessibility Features")),
334
+ title: ( localize(12690, "Get Started with Accessibility Features")),
335
335
  description: ( localize(
336
- 12678,
336
+ 12691,
337
337
  "Learn the tools and shortcuts that make VS Code accessible. Note that some actions are not actionable from within the context of the walkthrough."
338
338
  )),
339
339
  isFeatured: true,
340
340
  icon: setupIcon,
341
341
  when: CONTEXT_ACCESSIBILITY_MODE_ENABLED.key,
342
342
  next: 'Setup',
343
- walkthroughPageTitle: ( localize(12679, 'Setup VS Code Accessibility')),
343
+ walkthroughPageTitle: ( localize(12692, 'Setup VS Code Accessibility')),
344
344
  content: {
345
345
  type: 'steps',
346
346
  steps: [
347
347
  {
348
348
  id: 'accessibilityHelp',
349
- title: ( localize(12680, "Use the accessibility help dialog to learn about features")),
349
+ title: ( localize(12693, "Use the accessibility help dialog to learn about features")),
350
350
  description: ( localize(
351
- 12681,
351
+ 12694,
352
352
  "The accessibility help dialog provides information about what to expect from a feature and the commands/keybindings to operate them.\n With focus in an editor, terminal, notebook, chat response, comment, or debug console, the relevant dialog can be opened with the Open Accessibility Help command.\n{0}",
353
- Button(( localize(12682, "Open Accessibility Help")), 'command:editor.action.accessibilityHelp')
353
+ Button(( localize(12695, "Open Accessibility Help")), 'command:editor.action.accessibilityHelp')
354
354
  )),
355
355
  media: {
356
356
  type: 'markdown', path: 'empty'
@@ -359,13 +359,13 @@ const walkthroughs = [
359
359
  {
360
360
  id: 'accessibleView',
361
361
  title: ( localize(
362
- 12683,
362
+ 12696,
363
363
  "Screen reader users can inspect content line by line, character by character in the accessible view."
364
364
  )),
365
365
  description: ( localize(
366
- 12684,
366
+ 12697,
367
367
  "The accessible view is available for the terminal, hovers, notifications, comments, notebook output, chat responses, inline completions, and debug console output.\n With focus in any of those features, it can be opened with the Open Accessible View command.\n{0}",
368
- Button(( localize(12685, "Open Accessible View")), 'command:editor.action.accessibleView')
368
+ Button(( localize(12698, "Open Accessible View")), 'command:editor.action.accessibleView')
369
369
  )),
370
370
  media: {
371
371
  type: 'markdown', path: 'empty'
@@ -373,11 +373,11 @@ const walkthroughs = [
373
373
  },
374
374
  {
375
375
  id: 'verbositySettings',
376
- title: ( localize(12686, "Control the verbosity of aria labels")),
376
+ title: ( localize(12699, "Control the verbosity of aria labels")),
377
377
  description: ( localize(
378
- 12687,
378
+ 12700,
379
379
  "Screen reader verbosity settings exist for features around the workbench so that once a user is familiar with a feature, they can avoid hearing hints about how to operate it. For example, features for which an accessibility help dialog exists will indicate how to open the dialog until the verbosity setting for that feature has been disabled.\n These and other accessibility settings can be configured by running the Open Accessibility Settings command.\n{0}",
380
- Button(( localize(12688, "Open Accessibility Settings")), 'command:workbench.action.openAccessibilitySettings')
380
+ Button(( localize(12701, "Open Accessibility Settings")), 'command:workbench.action.openAccessibilitySettings')
381
381
  )),
382
382
  media: {
383
383
  type: 'markdown', path: 'empty'
@@ -385,21 +385,21 @@ const walkthroughs = [
385
385
  },
386
386
  {
387
387
  id: 'commandPaletteTaskAccessibility',
388
- title: ( localize(12689, "Unlock productivity with the Command Palette ")),
388
+ title: ( localize(12702, "Unlock productivity with the Command Palette ")),
389
389
  description: ( localize(
390
- 12690,
390
+ 12703,
391
391
  "Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
392
- Button(( localize(12669, "Open Command Palette")), 'command:workbench.action.showCommands')
392
+ Button(( localize(12682, "Open Command Palette")), 'command:workbench.action.showCommands')
393
393
  )),
394
394
  media: { type: 'markdown', path: 'empty' },
395
395
  },
396
396
  {
397
397
  id: 'keybindingsAccessibility',
398
- title: ( localize(12691, "Customize your keyboard shortcuts")),
398
+ title: ( localize(12704, "Customize your keyboard shortcuts")),
399
399
  description: ( localize(
400
- 12692,
400
+ 12705,
401
401
  "Once you have discovered your favorite commands, create custom keyboard shortcuts for instant access.\n{0}",
402
- Button(( localize(12693, "Keyboard Shortcuts")), 'command:toSide:workbench.action.openGlobalKeybindings')
402
+ Button(( localize(12706, "Keyboard Shortcuts")), 'command:toSide:workbench.action.openGlobalKeybindings')
403
403
  )),
404
404
  media: {
405
405
  type: 'markdown', path: 'empty',
@@ -408,14 +408,14 @@ const walkthroughs = [
408
408
  {
409
409
  id: 'accessibilitySignals',
410
410
  title: ( localize(
411
- 12694,
411
+ 12707,
412
412
  "Fine tune which accessibility signals you want to receive via audio or a braille device"
413
413
  )),
414
414
  description: ( localize(
415
- 12695,
415
+ 12708,
416
416
  "Accessibility sounds and announcements are played around the workbench for different events.\n These can be discovered and configured using the List Signal Sounds and List Signal Announcements commands.\n{0}\n{1}",
417
- Button(( localize(12696, "List Signal Sounds")), 'command:signals.sounds.help'),
418
- Button(( localize(12697, "List Signal Announcements")), 'command:accessibility.announcement.help')
417
+ Button(( localize(12709, "List Signal Sounds")), 'command:signals.sounds.help'),
418
+ Button(( localize(12710, "List Signal Announcements")), 'command:accessibility.announcement.help')
419
419
  )),
420
420
  media: {
421
421
  type: 'markdown', path: 'empty'
@@ -424,13 +424,13 @@ const walkthroughs = [
424
424
  {
425
425
  id: 'hover',
426
426
  title: ( localize(
427
- 12698,
427
+ 12711,
428
428
  "Access the hover in the editor to get more information on a variable or symbol"
429
429
  )),
430
430
  description: ( localize(
431
- 12699,
431
+ 12712,
432
432
  "While focus is in the editor on a variable or symbol, a hover can be focused with the Show or Open Hover command.\n{0}",
433
- Button(( localize(12700, "Show or Focus Hover")), 'command:editor.action.showHover')
433
+ Button(( localize(12713, "Show or Focus Hover")), 'command:editor.action.showHover')
434
434
  )),
435
435
  media: {
436
436
  type: 'markdown', path: 'empty'
@@ -438,11 +438,11 @@ const walkthroughs = [
438
438
  },
439
439
  {
440
440
  id: 'goToSymbol',
441
- title: ( localize(12701, "Navigate to symbols in a file")),
441
+ title: ( localize(12714, "Navigate to symbols in a file")),
442
442
  description: ( localize(
443
- 12702,
443
+ 12715,
444
444
  "The Go to Symbol command is useful for navigating between important landmarks in a document.\n{0}",
445
- Button(( localize(12703, "Go to Symbol")), 'command:editor.action.goToSymbol')
445
+ Button(( localize(12716, "Go to Symbol")), 'command:editor.action.goToSymbol')
446
446
  )),
447
447
  media: {
448
448
  type: 'markdown', path: 'empty'
@@ -451,14 +451,14 @@ const walkthroughs = [
451
451
  {
452
452
  id: 'codeFolding',
453
453
  title: ( localize(
454
- 12704,
454
+ 12717,
455
455
  "Use code folding to collapse blocks of code and focus on the code you're interested in."
456
456
  )),
457
457
  description: ( localize(
458
- 12705,
458
+ 12718,
459
459
  "Fold or unfold a code section with the Toggle Fold command.\n{0}\n Fold or unfold recursively with the Toggle Fold Recursively Command\n{1}\n",
460
- Button(( localize(12706, "Toggle Fold")), 'command:editor.toggleFold'),
461
- Button(( localize(12707, "Toggle Fold Recursively")), 'command:editor.toggleFoldRecursively')
460
+ Button(( localize(12719, "Toggle Fold")), 'command:editor.toggleFold'),
461
+ Button(( localize(12720, "Toggle Fold Recursively")), 'command:editor.toggleFoldRecursively')
462
462
  )),
463
463
  media: {
464
464
  type: 'markdown', path: 'empty'
@@ -466,12 +466,12 @@ const walkthroughs = [
466
466
  },
467
467
  {
468
468
  id: 'intellisense',
469
- title: ( localize(12708, "Use Intellisense to improve coding efficiency")),
469
+ title: ( localize(12721, "Use Intellisense to improve coding efficiency")),
470
470
  description: ( localize(
471
- 12709,
471
+ 12722,
472
472
  "Intellisense suggestions can be opened with the Trigger Intellisense command.\n{0}\n Inline intellisense suggestions can be triggered with Trigger Inline Suggestion\n{1}\n Useful settings include editor.inlineCompletionsAccessibilityVerbose and editor.screenReaderAnnounceInlineSuggestion.",
473
- Button(( localize(12710, "Trigger Intellisense")), 'command:editor.action.triggerSuggest'),
474
- Button(( localize(12711, 'Trigger Inline Suggestion')), 'command:editor.action.inlineSuggest.trigger')
473
+ Button(( localize(12723, "Trigger Intellisense")), 'command:editor.action.triggerSuggest'),
474
+ Button(( localize(12724, 'Trigger Inline Suggestion')), 'command:editor.action.inlineSuggest.trigger')
475
475
  )),
476
476
  media: {
477
477
  type: 'markdown', path: 'empty'
@@ -479,11 +479,11 @@ const walkthroughs = [
479
479
  },
480
480
  {
481
481
  id: 'accessibilitySettings',
482
- title: ( localize(12712, "Configure accessibility settings")),
482
+ title: ( localize(12725, "Configure accessibility settings")),
483
483
  description: ( localize(
484
- 12713,
484
+ 12726,
485
485
  "Accessibility settings can be configured by running the Open Accessibility Settings command.\n{0}",
486
- Button(( localize(12714, "Open Accessibility Settings")), 'command:workbench.action.openAccessibilitySettings')
486
+ Button(( localize(12727, "Open Accessibility Settings")), 'command:workbench.action.openAccessibilitySettings')
487
487
  )),
488
488
  media: { type: 'markdown', path: 'empty' }
489
489
  }
@@ -493,20 +493,20 @@ const walkthroughs = [
493
493
  {
494
494
  id: 'Beginner',
495
495
  isFeatured: false,
496
- title: ( localize(12715, "Learn the Fundamentals")),
496
+ title: ( localize(12728, "Learn the Fundamentals")),
497
497
  icon: beginnerIcon,
498
- description: ( localize(12716, "Get an overview of the most essential features")),
499
- walkthroughPageTitle: ( localize(12717, 'Essential Features')),
498
+ description: ( localize(12729, "Get an overview of the most essential features")),
499
+ walkthroughPageTitle: ( localize(12730, 'Essential Features')),
500
500
  content: {
501
501
  type: 'steps',
502
502
  steps: [
503
503
  {
504
504
  id: 'settingsAndSync',
505
- title: ( localize(12718, "Tune your settings")),
505
+ title: ( localize(12731, "Tune your settings")),
506
506
  description: ( localize(
507
- 12719,
507
+ 12732,
508
508
  "Customize every aspect of VS Code and [sync](command:workbench.userDataSync.actions.turnOn) customizations across devices.\n{0}",
509
- Button(( localize(12720, "Open Settings")), 'command:toSide:workbench.action.openSettings')
509
+ Button(( localize(12733, "Open Settings")), 'command:toSide:workbench.action.openSettings')
510
510
  )),
511
511
  when: 'workspacePlatform != \'webworker\' && syncStatus != uninitialized',
512
512
  completionEvents: ['onEvent:sync-enabled'],
@@ -516,11 +516,11 @@ const walkthroughs = [
516
516
  },
517
517
  {
518
518
  id: 'extensions',
519
- title: ( localize(12658, "Code with extensions")),
519
+ title: ( localize(12671, "Code with extensions")),
520
520
  description: ( localize(
521
- 12721,
521
+ 12734,
522
522
  "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}",
523
- Button(( localize(12722, "Browse Popular Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
523
+ Button(( localize(12735, "Browse Popular Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
524
524
  )),
525
525
  when: 'workspacePlatform != \'webworker\'',
526
526
  media: {
@@ -529,11 +529,11 @@ const walkthroughs = [
529
529
  },
530
530
  {
531
531
  id: 'terminal',
532
- title: ( localize(12723, "Built-in terminal")),
532
+ title: ( localize(12736, "Built-in terminal")),
533
533
  description: ( localize(
534
- 12724,
534
+ 12737,
535
535
  "Quickly run shell commands and monitor build output, right next to your code.\n{0}",
536
- Button(( localize(12725, "Open Terminal")), 'command:workbench.action.terminal.toggleTerminal')
536
+ Button(( localize(12738, "Open Terminal")), 'command:workbench.action.terminal.toggleTerminal')
537
537
  )),
538
538
  when: 'workspacePlatform != \'webworker\' && remoteName != codespaces && !terminalIsOpen',
539
539
  media: {
@@ -542,11 +542,11 @@ const walkthroughs = [
542
542
  },
543
543
  {
544
544
  id: 'debugging',
545
- title: ( localize(12726, "Watch your code in action")),
545
+ title: ( localize(12739, "Watch your code in action")),
546
546
  description: ( localize(
547
- 12727,
547
+ 12740,
548
548
  "Accelerate your edit, build, test, and debug loop by setting up a launch configuration.\n{0}",
549
- Button(( localize(12728, "Run your Project")), 'command:workbench.action.debug.selectandstart')
549
+ Button(( localize(12741, "Run your Project")), 'command:workbench.action.debug.selectandstart')
550
550
  )),
551
551
  when: 'workspacePlatform != \'webworker\' && workspaceFolderCount != 0',
552
552
  media: {
@@ -555,11 +555,11 @@ const walkthroughs = [
555
555
  },
556
556
  {
557
557
  id: 'scmClone',
558
- title: ( localize(12729, "Track your code with Git")),
558
+ title: ( localize(12742, "Track your code with Git")),
559
559
  description: ( localize(
560
- 12730,
560
+ 12743,
561
561
  "Set up the built-in version control for your project to track your changes and collaborate with others.\n{0}",
562
- Button(( localize(12731, "Clone Repository")), 'command:git.clone')
562
+ Button(( localize(12744, "Clone Repository")), 'command:git.clone')
563
563
  )),
564
564
  when: 'config.git.enabled && !git.missing && workspaceFolderCount == 0',
565
565
  media: {
@@ -568,11 +568,11 @@ const walkthroughs = [
568
568
  },
569
569
  {
570
570
  id: 'scmSetup',
571
- title: ( localize(12729, "Track your code with Git")),
571
+ title: ( localize(12742, "Track your code with Git")),
572
572
  description: ( localize(
573
- 12732,
573
+ 12745,
574
574
  "Set up the built-in version control for your project to track your changes and collaborate with others.\n{0}",
575
- Button(( localize(12733, "Initialize Git Repository")), 'command:git.init')
575
+ Button(( localize(12746, "Initialize Git Repository")), 'command:git.init')
576
576
  )),
577
577
  when: 'config.git.enabled && !git.missing && workspaceFolderCount != 0 && gitOpenRepositoryCount == 0',
578
578
  media: {
@@ -581,11 +581,11 @@ const walkthroughs = [
581
581
  },
582
582
  {
583
583
  id: 'scm',
584
- title: ( localize(12729, "Track your code with Git")),
584
+ title: ( localize(12742, "Track your code with Git")),
585
585
  description: ( localize(
586
- 12734,
586
+ 12747,
587
587
  "No more looking up Git commands! Git and GitHub workflows are seamlessly integrated.\n{0}",
588
- Button(( localize(12735, "Open Source Control")), 'command:workbench.view.scm')
588
+ Button(( localize(12748, "Open Source Control")), 'command:workbench.view.scm')
589
589
  )),
590
590
  when: 'config.git.enabled && !git.missing && workspaceFolderCount != 0 && gitOpenRepositoryCount != 0 && activeViewlet != \'workbench.view.scm\'',
591
591
  media: {
@@ -594,11 +594,11 @@ const walkthroughs = [
594
594
  },
595
595
  {
596
596
  id: 'installGit',
597
- title: ( localize(12736, "Install Git")),
597
+ title: ( localize(12749, "Install Git")),
598
598
  description: ( localize(
599
- 12737,
599
+ 12750,
600
600
  "Install Git to track changes in your projects.\n{0}\n{1}Reload window{2} after installation to complete Git setup.",
601
- Button(( localize(12738, "Install Git")), 'https://aka.ms/vscode-install-git'),
601
+ Button(( localize(12751, "Install Git")), 'https://aka.ms/vscode-install-git'),
602
602
  '[',
603
603
  '](command:workbench.action.reloadWindow)'
604
604
  )),
@@ -612,12 +612,12 @@ const walkthroughs = [
612
612
  },
613
613
  {
614
614
  id: 'tasks',
615
- title: ( localize(12739, "Automate your project tasks")),
615
+ title: ( localize(12752, "Automate your project tasks")),
616
616
  when: 'workspaceFolderCount != 0 && workspacePlatform != \'webworker\'',
617
617
  description: ( localize(
618
- 12740,
618
+ 12753,
619
619
  "Create tasks for your common workflows and enjoy the integrated experience of running scripts and automatically checking results.\n{0}",
620
- Button(( localize(12741, "Run Auto-detected Tasks")), 'command:workbench.action.tasks.runTask')
620
+ Button(( localize(12754, "Run Auto-detected Tasks")), 'command:workbench.action.tasks.runTask')
621
621
  )),
622
622
  media: {
623
623
  type: 'svg', altText: 'Task runner.', path: 'runTask.svg',
@@ -625,11 +625,11 @@ const walkthroughs = [
625
625
  },
626
626
  {
627
627
  id: 'shortcuts',
628
- title: ( localize(12742, "Customize your shortcuts")),
628
+ title: ( localize(12755, "Customize your shortcuts")),
629
629
  description: ( localize(
630
- 12743,
630
+ 12756,
631
631
  "Once you have discovered your favorite commands, create custom keyboard shortcuts for instant access.\n{0}",
632
- Button(( localize(12693, "Keyboard Shortcuts")), 'command:toSide:workbench.action.openGlobalKeybindings')
632
+ Button(( localize(12706, "Keyboard Shortcuts")), 'command:toSide:workbench.action.openGlobalKeybindings')
633
633
  )),
634
634
  media: {
635
635
  type: 'svg', altText: 'Interactive shortcuts.', path: 'shortcuts.svg',
@@ -637,12 +637,12 @@ const walkthroughs = [
637
637
  },
638
638
  {
639
639
  id: 'workspaceTrust',
640
- title: ( localize(12744, "Safely browse and edit code")),
640
+ title: ( localize(12757, "Safely browse and edit code")),
641
641
  description: ( localize(
642
- 12745,
642
+ 12758,
643
643
  "{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.",
644
- Button(( localize(12746, "Workspace Trust")), 'https://code.visualstudio.com/docs/editor/workspace-trust'),
645
- Button(( localize(12747, "enable trust")), 'command:toSide:workbench.trust.manage')
644
+ Button(( localize(12759, "Workspace Trust")), 'https://code.visualstudio.com/docs/editor/workspace-trust'),
645
+ Button(( localize(12760, "enable trust")), 'command:toSide:workbench.trust.manage')
646
646
  )),
647
647
  when: 'workspacePlatform != \'webworker\' && !isWorkspaceTrusted && workspaceFolderCount == 0',
648
648
  media: {
@@ -654,20 +654,20 @@ const walkthroughs = [
654
654
  },
655
655
  {
656
656
  id: 'notebooks',
657
- title: ( localize(12748, "Customize Notebooks")),
657
+ title: ( localize(12761, "Customize Notebooks")),
658
658
  description: '',
659
659
  icon: setupIcon,
660
660
  isFeatured: false,
661
661
  when: `config.${NotebookSetting.openGettingStarted} && userHasOpenedNotebook`,
662
- walkthroughPageTitle: ( localize(12749, 'Notebooks')),
662
+ walkthroughPageTitle: ( localize(12762, 'Notebooks')),
663
663
  content: {
664
664
  type: 'steps',
665
665
  steps: [
666
666
  {
667
667
  completionEvents: ['onCommand:notebook.setProfile'],
668
668
  id: 'notebookProfile',
669
- title: ( localize(12750, "Select the layout for your notebooks")),
670
- description: ( localize(12751, "Get notebooks to feel just the way you prefer")),
669
+ title: ( localize(12763, "Select the layout for your notebooks")),
670
+ description: ( localize(12764, "Get notebooks to feel just the way you prefer")),
671
671
  when: 'userHasOpenedNotebook',
672
672
  media: {
673
673
  type: 'markdown', path: 'notebookProfile'