@codingame/monaco-vscode-walkthrough-service-override 21.6.0 → 22.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (21) hide show
  1. package/package.json +9 -10
  2. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.contribution.js +26 -23
  3. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.d.ts +1 -1
  4. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.js +40 -42
  5. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedAccessibleView.js +3 -3
  6. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedColors.js +7 -7
  7. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedExtensionPoint.js +39 -39
  8. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedIcons.js +2 -2
  9. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedInput.js +2 -5
  10. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService._contribution.js +4 -4
  11. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService.js +2 -2
  12. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/startupPage.js +2 -2
  13. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent.js +177 -150
  14. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/notebookProfile.js +8 -7
  15. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/theme_picker.js +5 -5
  16. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/theme_picker_small.js +4 -4
  17. package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/editor/editorWalkThrough.js +3 -3
  18. package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThrough.contribution.js +3 -3
  19. package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughPart.d.ts +1 -1
  20. package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughPart.js +3 -3
  21. package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/common/walkThroughUtils.js +1 -1
@@ -10,7 +10,11 @@ import { CONTEXT_ACCESSIBILITY_MODE_ENABLED } from '@codingame/monaco-vscode-api
10
10
  import product from '@codingame/monaco-vscode-api/vscode/vs/platform/product/common/product';
11
11
 
12
12
  const defaultChat = {
13
- documentationUrl: product.defaultChatAgent?.documentationUrl ?? ''};
13
+ documentationUrl: product.defaultChatAgent?.documentationUrl ?? '',
14
+ provider: product.defaultChatAgent?.provider ?? { default: { name: '' } },
15
+ termsStatementUrl: product.defaultChatAgent?.termsStatementUrl ?? '',
16
+ privacyStatementUrl: product.defaultChatAgent?.privacyStatementUrl ?? ''
17
+ };
14
18
  class GettingStartedContentProviderRegistry {
15
19
  constructor() {
16
20
  this.providers = ( new Map());
@@ -27,13 +31,13 @@ gettingStartedContentRegistry.registerProvider('vs/workbench/contrib/welcomeGett
27
31
  gettingStartedContentRegistry.registerProvider('vs/workbench/contrib/welcomeGettingStarted/common/media/theme_picker_small', themePickerSmallContent);
28
32
  gettingStartedContentRegistry.registerProvider('vs/workbench/contrib/welcomeGettingStarted/common/media/notebookProfile', notebookProfileContent);
29
33
  gettingStartedContentRegistry.registerProvider('vs/workbench/contrib/welcomeGettingStarted/common/media/empty', () => '');
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")));
34
+ const setupIcon = registerIcon('getting-started-setup', Codicon.zap, ( localize(12748, "Icon used for the setup category of welcome page")));
35
+ const beginnerIcon = registerIcon('getting-started-beginner', Codicon.lightbulb, ( localize(12749, "Icon used for the beginner category of welcome page")));
32
36
  const startEntries = [
33
37
  {
34
38
  id: 'welcome.showNewFileEntries',
35
- title: ( localize(12633, "New File...")),
36
- description: ( localize(12634, "Open a new untitled text file, notebook, or custom editor.")),
39
+ title: ( localize(12750, "New File...")),
40
+ description: ( localize(12751, "Open a new untitled text file, notebook, or custom editor.")),
37
41
  icon: Codicon.newFile,
38
42
  content: {
39
43
  type: 'startEntry',
@@ -42,8 +46,8 @@ const startEntries = [
42
46
  },
43
47
  {
44
48
  id: 'topLevelOpenMac',
45
- title: ( localize(12635, "Open...")),
46
- description: ( localize(12636, "Open a file or folder to start working")),
49
+ title: ( localize(12752, "Open...")),
50
+ description: ( localize(12753, "Open a file or folder to start working")),
47
51
  icon: Codicon.folderOpened,
48
52
  when: '!isWeb && isMac',
49
53
  content: {
@@ -53,8 +57,8 @@ const startEntries = [
53
57
  },
54
58
  {
55
59
  id: 'topLevelOpenFile',
56
- title: ( localize(12637, "Open File...")),
57
- description: ( localize(12638, "Open a file to start working")),
60
+ title: ( localize(12754, "Open File...")),
61
+ description: ( localize(12755, "Open a file to start working")),
58
62
  icon: Codicon.goToFile,
59
63
  when: 'isWeb || !isMac',
60
64
  content: {
@@ -64,8 +68,8 @@ const startEntries = [
64
68
  },
65
69
  {
66
70
  id: 'topLevelOpenFolder',
67
- title: ( localize(12639, "Open Folder...")),
68
- description: ( localize(12640, "Open a folder to start working")),
71
+ title: ( localize(12756, "Open Folder...")),
72
+ description: ( localize(12757, "Open a folder to start working")),
69
73
  icon: Codicon.folderOpened,
70
74
  when: '!isWeb && !isMac',
71
75
  content: {
@@ -75,8 +79,8 @@ const startEntries = [
75
79
  },
76
80
  {
77
81
  id: 'topLevelOpenFolderWeb',
78
- title: ( localize(12639, "Open Folder...")),
79
- description: ( localize(12640, "Open a folder to start working")),
82
+ title: ( localize(12756, "Open Folder...")),
83
+ description: ( localize(12757, "Open a folder to start working")),
80
84
  icon: Codicon.folderOpened,
81
85
  when: '!openFolderWorkspaceSupport && workbenchState == \'workspace\'',
82
86
  content: {
@@ -86,8 +90,8 @@ const startEntries = [
86
90
  },
87
91
  {
88
92
  id: 'topLevelGitClone',
89
- title: ( localize(12641, "Clone Git Repository...")),
90
- description: ( localize(12642, "Clone a remote repository to a local folder")),
93
+ title: ( localize(12758, "Clone Git Repository...")),
94
+ description: ( localize(12759, "Clone a remote repository to a local folder")),
91
95
  when: 'config.git.enabled && !git.missing',
92
96
  icon: Codicon.sourceControl,
93
97
  content: {
@@ -97,9 +101,9 @@ const startEntries = [
97
101
  },
98
102
  {
99
103
  id: 'topLevelGitOpen',
100
- title: ( localize(12643, "Open Repository...")),
104
+ title: ( localize(12760, "Open Repository...")),
101
105
  description: ( localize(
102
- 12644,
106
+ 12761,
103
107
  "Connect to a remote repository or pull request to browse, search, edit, and commit"
104
108
  )),
105
109
  when: 'workspacePlatform == \'webworker\'',
@@ -111,8 +115,8 @@ const startEntries = [
111
115
  },
112
116
  {
113
117
  id: 'topLevelRemoteOpen',
114
- title: ( localize(12645, "Connect to...")),
115
- description: ( localize(12646, "Connect to remote development workspaces.")),
118
+ title: ( localize(12762, "Connect to...")),
119
+ description: ( localize(12763, "Connect to remote development workspaces.")),
116
120
  when: '!isWeb',
117
121
  icon: Codicon.remote,
118
122
  content: {
@@ -122,8 +126,8 @@ const startEntries = [
122
126
  },
123
127
  {
124
128
  id: 'topLevelOpenTunnel',
125
- title: ( localize(12647, "Open Tunnel...")),
126
- description: ( localize(12648, "Connect to a remote machine through a Tunnel")),
129
+ title: ( localize(12764, "Open Tunnel...")),
130
+ description: ( localize(12765, "Connect to a remote machine through a Tunnel")),
127
131
  when: 'isWeb && showRemoteStartEntryInWeb',
128
132
  icon: Codicon.remote,
129
133
  content: {
@@ -133,8 +137,8 @@ const startEntries = [
133
137
  },
134
138
  {
135
139
  id: 'topLevelNewWorkspaceChat',
136
- title: ( localize(12649, "Generate New Workspace...")),
137
- description: ( localize(12650, "Chat to create a new workspace")),
140
+ title: ( localize(12766, "Generate New Workspace...")),
141
+ description: ( localize(12767, "Chat to create a new workspace")),
138
142
  icon: Codicon.chatSparkle,
139
143
  when: '!isWeb && !chatSetupHidden',
140
144
  content: {
@@ -144,18 +148,27 @@ const startEntries = [
144
148
  },
145
149
  ];
146
150
  const Button = (title, href) => `[${title}](${href})`;
147
- const CopilotStepTitle = ( localize(12651, "Use AI features with Copilot for free"));
151
+ const CopilotStepTitle = ( localize(12768, "Use AI features with Copilot for free"));
148
152
  const CopilotDescription = ( localize(
149
- 12652,
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.",
153
+ 12769,
154
+ "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
155
  defaultChat.documentationUrl ?? ''
152
156
  ));
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');
157
+ const CopilotTermsString = ( localize(
158
+ 12770,
159
+ "By continuing with {0} Copilot, you agree to {1}'s [Terms]({2}) and [Privacy Statement]({3})",
160
+ defaultChat.provider.default.name,
161
+ defaultChat.provider.default.name,
162
+ defaultChat.termsStatementUrl,
163
+ defaultChat.privacyStatementUrl
164
+ ));
165
+ const CopilotAnonymousButton = Button(( localize(12771, "Set up Copilot")), `command:workbench.action.chat.triggerSetupAnonymousWithoutDialog`);
166
+ const CopilotSignedOutButton = Button(( localize(12771, "Set up Copilot")), `command:workbench.action.chat.triggerSetup`);
167
+ const CopilotSignedInButton = Button(( localize(12771, "Set up Copilot")), `command:workbench.action.chat.triggerSetup`);
168
+ const CopilotCompleteButton = Button(( localize(12772, "Chat with Copilot")), 'command:workbench.action.chat.open');
156
169
  function createCopilotSetupStep(id, button, when, includeTerms) {
157
170
  const description = includeTerms ?
158
- `${CopilotDescription}\n\n${button}` :
171
+ `${CopilotDescription}\n${CopilotTermsString}\n${button}` :
159
172
  `${CopilotDescription}\n${button}`;
160
173
  return {
161
174
  id,
@@ -170,26 +183,27 @@ function createCopilotSetupStep(id, button, when, includeTerms) {
170
183
  const walkthroughs = [
171
184
  {
172
185
  id: 'Setup',
173
- title: ( localize(12656, "Get started with VS Code")),
174
- description: ( localize(12657, "Customize your editor, learn the basics, and start coding")),
186
+ title: ( localize(12773, "Get started with VS Code")),
187
+ description: ( localize(12774, "Customize your editor, learn the basics, and start coding")),
175
188
  isFeatured: true,
176
189
  icon: setupIcon,
177
190
  when: '!isWeb',
178
- walkthroughPageTitle: ( localize(12658, 'Setup VS Code')),
191
+ walkthroughPageTitle: ( localize(12775, 'Setup VS Code')),
179
192
  next: 'Beginner',
180
193
  content: {
181
194
  type: 'steps',
182
195
  steps: [
183
- createCopilotSetupStep('CopilotSetupSignedOut', CopilotSignedOutButton, 'chatEntitlementSignedOut', true),
184
- createCopilotSetupStep('CopilotSetupComplete', CopilotCompleteButton, 'chatSetupInstalled && !chatSetupDisabled && (chatPlanPro || chatPlanProPlus || chatPlanBusiness || chatPlanEnterprise || chatPlanFree)', false),
185
- createCopilotSetupStep('CopilotSetupSignedIn', CopilotSignedInButton, '!chatEntitlementSignedOut && (!chatSetupInstalled || chatSetupDisabled || chatPlanCanSignUp)', true),
196
+ createCopilotSetupStep('CopilotSetupAnonymous', CopilotAnonymousButton, 'chatAnonymous && !chatSetupInstalled', true),
197
+ createCopilotSetupStep('CopilotSetupSignedOut', CopilotSignedOutButton, 'chatEntitlementSignedOut && !chatAnonymous', false),
198
+ createCopilotSetupStep('CopilotSetupComplete', CopilotCompleteButton, 'chatSetupInstalled && !chatSetupDisabled && (chatAnonymous || chatPlanPro || chatPlanProPlus || chatPlanBusiness || chatPlanEnterprise || chatPlanFree)', false),
199
+ createCopilotSetupStep('CopilotSetupSignedIn', CopilotSignedInButton, '!chatEntitlementSignedOut && (!chatSetupInstalled || chatSetupDisabled || chatPlanCanSignUp)', false),
186
200
  {
187
201
  id: 'pickColorTheme',
188
- title: ( localize(12659, "Choose your theme")),
202
+ title: ( localize(12776, "Choose your theme")),
189
203
  description: ( localize(
190
- 12660,
204
+ 12777,
191
205
  "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(12661, "Browse Color Themes")), 'command:workbench.action.selectTheme')
206
+ Button(( localize(12778, "Browse Color Themes")), 'command:workbench.action.selectTheme')
193
207
  )),
194
208
  completionEvents: [
195
209
  'onSettingChanged:workbench.colorTheme',
@@ -199,11 +213,11 @@ const walkthroughs = [
199
213
  },
200
214
  {
201
215
  id: 'videoTutorial',
202
- title: ( localize(12662, "Watch video tutorials")),
216
+ title: ( localize(12779, "Watch video tutorials")),
203
217
  description: ( localize(
204
- 12663,
218
+ 12780,
205
219
  "Watch the first in a series of short & practical video tutorials for VS Code's key features.\n{0}",
206
- Button(( localize(12664, "Watch Tutorial")), 'https://aka.ms/vscode-getting-started-video')
220
+ Button(( localize(12781, "Watch Tutorial")), 'https://aka.ms/vscode-getting-started-video')
207
221
  )),
208
222
  media: { type: 'svg', altText: 'VS Code Settings', path: 'learn.svg' },
209
223
  }
@@ -212,23 +226,23 @@ const walkthroughs = [
212
226
  },
213
227
  {
214
228
  id: 'SetupWeb',
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")),
229
+ title: ( localize(12782, "Get Started with VS Code for the Web")),
230
+ description: ( localize(12783, "Customize your editor, learn the basics, and start coding")),
217
231
  isFeatured: true,
218
232
  icon: setupIcon,
219
233
  when: 'isWeb',
220
234
  next: 'Beginner',
221
- walkthroughPageTitle: ( localize(12667, 'Setup VS Code Web')),
235
+ walkthroughPageTitle: ( localize(12784, 'Setup VS Code Web')),
222
236
  content: {
223
237
  type: 'steps',
224
238
  steps: [
225
239
  {
226
240
  id: 'pickColorThemeWeb',
227
- title: ( localize(12659, "Choose your theme")),
241
+ title: ( localize(12776, "Choose your theme")),
228
242
  description: ( localize(
229
- 12660,
243
+ 12777,
230
244
  "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(12661, "Browse Color Themes")), 'command:workbench.action.selectTheme')
245
+ Button(( localize(12778, "Browse Color Themes")), 'command:workbench.action.selectTheme')
232
246
  )),
233
247
  completionEvents: [
234
248
  'onSettingChanged:workbench.colorTheme',
@@ -238,11 +252,11 @@ const walkthroughs = [
238
252
  },
239
253
  {
240
254
  id: 'menuBarWeb',
241
- title: ( localize(12668, "Just the right amount of UI")),
255
+ title: ( localize(12785, "Just the right amount of UI")),
242
256
  description: ( localize(
243
- 12669,
257
+ 12786,
244
258
  "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(12670, "Toggle Menu Bar")), 'command:workbench.action.toggleMenuBar')
259
+ Button(( localize(12787, "Toggle Menu Bar")), 'command:workbench.action.toggleMenuBar')
246
260
  )),
247
261
  when: 'isWeb',
248
262
  media: {
@@ -251,11 +265,11 @@ const walkthroughs = [
251
265
  },
252
266
  {
253
267
  id: 'extensionsWebWeb',
254
- title: ( localize(12671, "Code with extensions")),
268
+ title: ( localize(12788, "Code with extensions")),
255
269
  description: ( localize(
256
- 12672,
270
+ 12789,
257
271
  "Extensions are VS Code's power-ups. A growing number are becoming available in the web.\n{0}",
258
- Button(( localize(12673, "Browse Popular Web Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
272
+ Button(( localize(12790, "Browse Popular Web Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
259
273
  )),
260
274
  when: 'workspacePlatform == \'webworker\'',
261
275
  media: {
@@ -264,11 +278,11 @@ const walkthroughs = [
264
278
  },
265
279
  {
266
280
  id: 'findLanguageExtensionsWeb',
267
- title: ( localize(12674, "Rich support for all your languages")),
281
+ title: ( localize(12791, "Rich support for all your languages")),
268
282
  description: ( localize(
269
- 12675,
283
+ 12792,
270
284
  "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(12676, "Browse Language Extensions")), 'command:workbench.extensions.action.showLanguageExtensions')
285
+ Button(( localize(12793, "Browse Language Extensions")), 'command:workbench.extensions.action.showLanguageExtensions')
272
286
  )),
273
287
  when: 'workspacePlatform != \'webworker\'',
274
288
  media: {
@@ -277,11 +291,11 @@ const walkthroughs = [
277
291
  },
278
292
  {
279
293
  id: 'settingsSyncWeb',
280
- title: ( localize(12677, "Sync settings across devices")),
294
+ title: ( localize(12794, "Sync settings across devices")),
281
295
  description: ( localize(
282
- 12678,
296
+ 12795,
283
297
  "Keep your essential customizations backed up and updated across all your devices.\n{0}",
284
- Button(( localize(12679, "Backup and Sync Settings")), 'command:workbench.userDataSync.actions.turnOn')
298
+ Button(( localize(12796, "Backup and Sync Settings")), 'command:workbench.userDataSync.actions.turnOn')
285
299
  )),
286
300
  when: 'syncStatus != uninitialized',
287
301
  completionEvents: ['onEvent:sync-enabled'],
@@ -291,22 +305,22 @@ const walkthroughs = [
291
305
  },
292
306
  {
293
307
  id: 'commandPaletteTaskWeb',
294
- title: ( localize(12680, "Unlock productivity with the Command Palette ")),
308
+ title: ( localize(12797, "Unlock productivity with the Command Palette ")),
295
309
  description: ( localize(
296
- 12681,
310
+ 12798,
297
311
  "Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
298
- Button(( localize(12682, "Open Command Palette")), 'command:workbench.action.showCommands')
312
+ Button(( localize(12799, "Open Command Palette")), 'command:workbench.action.showCommands')
299
313
  )),
300
314
  media: { type: 'svg', altText: 'Command Palette overlay for searching and executing commands.', path: 'commandPalette.svg' },
301
315
  },
302
316
  {
303
317
  id: 'pickAFolderTask-WebWeb',
304
- title: ( localize(12683, "Open up your code")),
318
+ title: ( localize(12800, "Open up your code")),
305
319
  description: ( localize(
306
- 12684,
320
+ 12801,
307
321
  "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(12685, "Open Folder")), 'command:workbench.action.addRootFolder'),
309
- Button(( localize(12686, "Open Repository")), 'command:remoteHub.openRepository')
322
+ Button(( localize(12802, "Open Folder")), 'command:workbench.action.addRootFolder'),
323
+ Button(( localize(12803, "Open Repository")), 'command:remoteHub.openRepository')
310
324
  )),
311
325
  when: 'workspaceFolderCount == 0',
312
326
  media: {
@@ -315,11 +329,11 @@ const walkthroughs = [
315
329
  },
316
330
  {
317
331
  id: 'quickOpenWeb',
318
- title: ( localize(12687, "Quickly navigate between your files")),
332
+ title: ( localize(12804, "Quickly navigate between your files")),
319
333
  description: ( localize(
320
- 12688,
334
+ 12805,
321
335
  "Navigate between files in an instant with one keystroke. Tip: Open multiple files by pressing the right arrow key.\n{0}",
322
- Button(( localize(12689, "Quick Open a File")), 'command:toSide:workbench.action.quickOpen')
336
+ Button(( localize(12806, "Quick Open a File")), 'command:toSide:workbench.action.quickOpen')
323
337
  )),
324
338
  when: 'workspaceFolderCount != 0',
325
339
  media: {
@@ -331,26 +345,26 @@ const walkthroughs = [
331
345
  },
332
346
  {
333
347
  id: 'SetupAccessibility',
334
- title: ( localize(12690, "Get Started with Accessibility Features")),
348
+ title: ( localize(12807, "Get Started with Accessibility Features")),
335
349
  description: ( localize(
336
- 12691,
350
+ 12808,
337
351
  "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
352
  )),
339
353
  isFeatured: true,
340
354
  icon: setupIcon,
341
355
  when: CONTEXT_ACCESSIBILITY_MODE_ENABLED.key,
342
356
  next: 'Setup',
343
- walkthroughPageTitle: ( localize(12692, 'Setup VS Code Accessibility')),
357
+ walkthroughPageTitle: ( localize(12809, 'Setup VS Code Accessibility')),
344
358
  content: {
345
359
  type: 'steps',
346
360
  steps: [
347
361
  {
348
362
  id: 'accessibilityHelp',
349
- title: ( localize(12693, "Use the accessibility help dialog to learn about features")),
363
+ title: ( localize(12810, "Use the accessibility help dialog to learn about features")),
350
364
  description: ( localize(
351
- 12694,
365
+ 12811,
352
366
  "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(12695, "Open Accessibility Help")), 'command:editor.action.accessibilityHelp')
367
+ Button(( localize(12812, "Open Accessibility Help")), 'command:editor.action.accessibilityHelp')
354
368
  )),
355
369
  media: {
356
370
  type: 'markdown', path: 'empty'
@@ -359,13 +373,13 @@ const walkthroughs = [
359
373
  {
360
374
  id: 'accessibleView',
361
375
  title: ( localize(
362
- 12696,
376
+ 12813,
363
377
  "Screen reader users can inspect content line by line, character by character in the accessible view."
364
378
  )),
365
379
  description: ( localize(
366
- 12697,
380
+ 12814,
367
381
  "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(12698, "Open Accessible View")), 'command:editor.action.accessibleView')
382
+ Button(( localize(12815, "Open Accessible View")), 'command:editor.action.accessibleView')
369
383
  )),
370
384
  media: {
371
385
  type: 'markdown', path: 'empty'
@@ -373,11 +387,11 @@ const walkthroughs = [
373
387
  },
374
388
  {
375
389
  id: 'verbositySettings',
376
- title: ( localize(12699, "Control the verbosity of aria labels")),
390
+ title: ( localize(12816, "Control the verbosity of aria labels")),
377
391
  description: ( localize(
378
- 12700,
392
+ 12817,
379
393
  "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(12701, "Open Accessibility Settings")), 'command:workbench.action.openAccessibilitySettings')
394
+ Button(( localize(12818, "Open Accessibility Settings")), 'command:workbench.action.openAccessibilitySettings')
381
395
  )),
382
396
  media: {
383
397
  type: 'markdown', path: 'empty'
@@ -385,21 +399,21 @@ const walkthroughs = [
385
399
  },
386
400
  {
387
401
  id: 'commandPaletteTaskAccessibility',
388
- title: ( localize(12702, "Unlock productivity with the Command Palette ")),
402
+ title: ( localize(12819, "Unlock productivity with the Command Palette ")),
389
403
  description: ( localize(
390
- 12703,
404
+ 12820,
391
405
  "Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
392
- Button(( localize(12682, "Open Command Palette")), 'command:workbench.action.showCommands')
406
+ Button(( localize(12799, "Open Command Palette")), 'command:workbench.action.showCommands')
393
407
  )),
394
408
  media: { type: 'markdown', path: 'empty' },
395
409
  },
396
410
  {
397
411
  id: 'keybindingsAccessibility',
398
- title: ( localize(12704, "Customize your keyboard shortcuts")),
412
+ title: ( localize(12821, "Customize your keyboard shortcuts")),
399
413
  description: ( localize(
400
- 12705,
414
+ 12822,
401
415
  "Once you have discovered your favorite commands, create custom keyboard shortcuts for instant access.\n{0}",
402
- Button(( localize(12706, "Keyboard Shortcuts")), 'command:toSide:workbench.action.openGlobalKeybindings')
416
+ Button(( localize(12823, "Keyboard Shortcuts")), 'command:toSide:workbench.action.openGlobalKeybindings')
403
417
  )),
404
418
  media: {
405
419
  type: 'markdown', path: 'empty',
@@ -408,14 +422,14 @@ const walkthroughs = [
408
422
  {
409
423
  id: 'accessibilitySignals',
410
424
  title: ( localize(
411
- 12707,
425
+ 12824,
412
426
  "Fine tune which accessibility signals you want to receive via audio or a braille device"
413
427
  )),
414
428
  description: ( localize(
415
- 12708,
429
+ 12825,
416
430
  "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(12709, "List Signal Sounds")), 'command:signals.sounds.help'),
418
- Button(( localize(12710, "List Signal Announcements")), 'command:accessibility.announcement.help')
431
+ Button(( localize(12826, "List Signal Sounds")), 'command:signals.sounds.help'),
432
+ Button(( localize(12827, "List Signal Announcements")), 'command:accessibility.announcement.help')
419
433
  )),
420
434
  media: {
421
435
  type: 'markdown', path: 'empty'
@@ -424,13 +438,13 @@ const walkthroughs = [
424
438
  {
425
439
  id: 'hover',
426
440
  title: ( localize(
427
- 12711,
441
+ 12828,
428
442
  "Access the hover in the editor to get more information on a variable or symbol"
429
443
  )),
430
444
  description: ( localize(
431
- 12712,
445
+ 12829,
432
446
  "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(12713, "Show or Focus Hover")), 'command:editor.action.showHover')
447
+ Button(( localize(12830, "Show or Focus Hover")), 'command:editor.action.showHover')
434
448
  )),
435
449
  media: {
436
450
  type: 'markdown', path: 'empty'
@@ -438,11 +452,11 @@ const walkthroughs = [
438
452
  },
439
453
  {
440
454
  id: 'goToSymbol',
441
- title: ( localize(12714, "Navigate to symbols in a file")),
455
+ title: ( localize(12831, "Navigate to symbols in a file")),
442
456
  description: ( localize(
443
- 12715,
457
+ 12832,
444
458
  "The Go to Symbol command is useful for navigating between important landmarks in a document.\n{0}",
445
- Button(( localize(12716, "Go to Symbol")), 'command:editor.action.goToSymbol')
459
+ Button(( localize(12833, "Go to Symbol")), 'command:editor.action.goToSymbol')
446
460
  )),
447
461
  media: {
448
462
  type: 'markdown', path: 'empty'
@@ -451,14 +465,14 @@ const walkthroughs = [
451
465
  {
452
466
  id: 'codeFolding',
453
467
  title: ( localize(
454
- 12717,
468
+ 12834,
455
469
  "Use code folding to collapse blocks of code and focus on the code you're interested in."
456
470
  )),
457
471
  description: ( localize(
458
- 12718,
472
+ 12835,
459
473
  "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(12719, "Toggle Fold")), 'command:editor.toggleFold'),
461
- Button(( localize(12720, "Toggle Fold Recursively")), 'command:editor.toggleFoldRecursively')
474
+ Button(( localize(12836, "Toggle Fold")), 'command:editor.toggleFold'),
475
+ Button(( localize(12837, "Toggle Fold Recursively")), 'command:editor.toggleFoldRecursively')
462
476
  )),
463
477
  media: {
464
478
  type: 'markdown', path: 'empty'
@@ -466,12 +480,12 @@ const walkthroughs = [
466
480
  },
467
481
  {
468
482
  id: 'intellisense',
469
- title: ( localize(12721, "Use Intellisense to improve coding efficiency")),
483
+ title: ( localize(12838, "Use Intellisense to improve coding efficiency")),
470
484
  description: ( localize(
471
- 12722,
485
+ 12839,
472
486
  "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(12723, "Trigger Intellisense")), 'command:editor.action.triggerSuggest'),
474
- Button(( localize(12724, 'Trigger Inline Suggestion')), 'command:editor.action.inlineSuggest.trigger')
487
+ Button(( localize(12840, "Trigger Intellisense")), 'command:editor.action.triggerSuggest'),
488
+ Button(( localize(12841, 'Trigger Inline Suggestion')), 'command:editor.action.inlineSuggest.trigger')
475
489
  )),
476
490
  media: {
477
491
  type: 'markdown', path: 'empty'
@@ -479,12 +493,25 @@ const walkthroughs = [
479
493
  },
480
494
  {
481
495
  id: 'accessibilitySettings',
482
- title: ( localize(12725, "Configure accessibility settings")),
496
+ title: ( localize(12842, "Configure accessibility settings")),
483
497
  description: ( localize(
484
- 12726,
498
+ 12843,
485
499
  "Accessibility settings can be configured by running the Open Accessibility Settings command.\n{0}",
486
- Button(( localize(12727, "Open Accessibility Settings")), 'command:workbench.action.openAccessibilitySettings')
500
+ Button(( localize(12844, "Open Accessibility Settings")), 'command:workbench.action.openAccessibilitySettings')
501
+ )),
502
+ media: { type: 'markdown', path: 'empty' }
503
+ },
504
+ {
505
+ id: 'dictation',
506
+ title: ( localize(12845, "Use dictation to write code and text in the editor and terminal")),
507
+ description: ( localize(
508
+ 12846,
509
+ "Dictation allows you to write code and text using your voice. It can be activated with the Voice: Start Dictation in Editor command.\n{0}\n For dictation in the terminal, use the Voice: Start Dictation in Terminal and Voice: Stop Dictation in Terminal commands.\n{1}\n{2}",
510
+ Button(( localize(12847, "Voice: Start Dictation in Editor")), 'command:workbench.action.editorDictation.start'),
511
+ Button(( localize(12848, "Terminal: Start Dictation in Terminal")), 'command:workbench.action.terminal.startVoiceDictation'),
512
+ Button(( localize(12849, "Terminal: Stop Dictation in Terminal")), 'command:workbench.action.terminal.stopVoiceDictation')
487
513
  )),
514
+ when: 'hasSpeechProvider',
488
515
  media: { type: 'markdown', path: 'empty' }
489
516
  }
490
517
  ]
@@ -493,20 +520,20 @@ const walkthroughs = [
493
520
  {
494
521
  id: 'Beginner',
495
522
  isFeatured: false,
496
- title: ( localize(12728, "Learn the Fundamentals")),
523
+ title: ( localize(12850, "Learn the Fundamentals")),
497
524
  icon: beginnerIcon,
498
- description: ( localize(12729, "Get an overview of the most essential features")),
499
- walkthroughPageTitle: ( localize(12730, 'Essential Features')),
525
+ description: ( localize(12851, "Get an overview of the most essential features")),
526
+ walkthroughPageTitle: ( localize(12852, 'Essential Features')),
500
527
  content: {
501
528
  type: 'steps',
502
529
  steps: [
503
530
  {
504
531
  id: 'settingsAndSync',
505
- title: ( localize(12731, "Tune your settings")),
532
+ title: ( localize(12853, "Tune your settings")),
506
533
  description: ( localize(
507
- 12732,
534
+ 12854,
508
535
  "Customize every aspect of VS Code and [sync](command:workbench.userDataSync.actions.turnOn) customizations across devices.\n{0}",
509
- Button(( localize(12733, "Open Settings")), 'command:toSide:workbench.action.openSettings')
536
+ Button(( localize(12855, "Open Settings")), 'command:toSide:workbench.action.openSettings')
510
537
  )),
511
538
  when: 'workspacePlatform != \'webworker\' && syncStatus != uninitialized',
512
539
  completionEvents: ['onEvent:sync-enabled'],
@@ -516,11 +543,11 @@ const walkthroughs = [
516
543
  },
517
544
  {
518
545
  id: 'extensions',
519
- title: ( localize(12671, "Code with extensions")),
546
+ title: ( localize(12788, "Code with extensions")),
520
547
  description: ( localize(
521
- 12734,
548
+ 12856,
522
549
  "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(12735, "Browse Popular Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
550
+ Button(( localize(12857, "Browse Popular Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
524
551
  )),
525
552
  when: 'workspacePlatform != \'webworker\'',
526
553
  media: {
@@ -529,11 +556,11 @@ const walkthroughs = [
529
556
  },
530
557
  {
531
558
  id: 'terminal',
532
- title: ( localize(12736, "Built-in terminal")),
559
+ title: ( localize(12858, "Built-in terminal")),
533
560
  description: ( localize(
534
- 12737,
561
+ 12859,
535
562
  "Quickly run shell commands and monitor build output, right next to your code.\n{0}",
536
- Button(( localize(12738, "Open Terminal")), 'command:workbench.action.terminal.toggleTerminal')
563
+ Button(( localize(12860, "Open Terminal")), 'command:workbench.action.terminal.toggleTerminal')
537
564
  )),
538
565
  when: 'workspacePlatform != \'webworker\' && remoteName != codespaces && !terminalIsOpen',
539
566
  media: {
@@ -542,11 +569,11 @@ const walkthroughs = [
542
569
  },
543
570
  {
544
571
  id: 'debugging',
545
- title: ( localize(12739, "Watch your code in action")),
572
+ title: ( localize(12861, "Watch your code in action")),
546
573
  description: ( localize(
547
- 12740,
574
+ 12862,
548
575
  "Accelerate your edit, build, test, and debug loop by setting up a launch configuration.\n{0}",
549
- Button(( localize(12741, "Run your Project")), 'command:workbench.action.debug.selectandstart')
576
+ Button(( localize(12863, "Run your Project")), 'command:workbench.action.debug.selectandstart')
550
577
  )),
551
578
  when: 'workspacePlatform != \'webworker\' && workspaceFolderCount != 0',
552
579
  media: {
@@ -555,11 +582,11 @@ const walkthroughs = [
555
582
  },
556
583
  {
557
584
  id: 'scmClone',
558
- title: ( localize(12742, "Track your code with Git")),
585
+ title: ( localize(12864, "Track your code with Git")),
559
586
  description: ( localize(
560
- 12743,
587
+ 12865,
561
588
  "Set up the built-in version control for your project to track your changes and collaborate with others.\n{0}",
562
- Button(( localize(12744, "Clone Repository")), 'command:git.clone')
589
+ Button(( localize(12866, "Clone Repository")), 'command:git.clone')
563
590
  )),
564
591
  when: 'config.git.enabled && !git.missing && workspaceFolderCount == 0',
565
592
  media: {
@@ -568,11 +595,11 @@ const walkthroughs = [
568
595
  },
569
596
  {
570
597
  id: 'scmSetup',
571
- title: ( localize(12742, "Track your code with Git")),
598
+ title: ( localize(12864, "Track your code with Git")),
572
599
  description: ( localize(
573
- 12745,
600
+ 12867,
574
601
  "Set up the built-in version control for your project to track your changes and collaborate with others.\n{0}",
575
- Button(( localize(12746, "Initialize Git Repository")), 'command:git.init')
602
+ Button(( localize(12868, "Initialize Git Repository")), 'command:git.init')
576
603
  )),
577
604
  when: 'config.git.enabled && !git.missing && workspaceFolderCount != 0 && gitOpenRepositoryCount == 0',
578
605
  media: {
@@ -581,11 +608,11 @@ const walkthroughs = [
581
608
  },
582
609
  {
583
610
  id: 'scm',
584
- title: ( localize(12742, "Track your code with Git")),
611
+ title: ( localize(12864, "Track your code with Git")),
585
612
  description: ( localize(
586
- 12747,
613
+ 12869,
587
614
  "No more looking up Git commands! Git and GitHub workflows are seamlessly integrated.\n{0}",
588
- Button(( localize(12748, "Open Source Control")), 'command:workbench.view.scm')
615
+ Button(( localize(12870, "Open Source Control")), 'command:workbench.view.scm')
589
616
  )),
590
617
  when: 'config.git.enabled && !git.missing && workspaceFolderCount != 0 && gitOpenRepositoryCount != 0 && activeViewlet != \'workbench.view.scm\'',
591
618
  media: {
@@ -594,11 +621,11 @@ const walkthroughs = [
594
621
  },
595
622
  {
596
623
  id: 'installGit',
597
- title: ( localize(12749, "Install Git")),
624
+ title: ( localize(12871, "Install Git")),
598
625
  description: ( localize(
599
- 12750,
626
+ 12872,
600
627
  "Install Git to track changes in your projects.\n{0}\n{1}Reload window{2} after installation to complete Git setup.",
601
- Button(( localize(12751, "Install Git")), 'https://aka.ms/vscode-install-git'),
628
+ Button(( localize(12873, "Install Git")), 'https://aka.ms/vscode-install-git'),
602
629
  '[',
603
630
  '](command:workbench.action.reloadWindow)'
604
631
  )),
@@ -612,12 +639,12 @@ const walkthroughs = [
612
639
  },
613
640
  {
614
641
  id: 'tasks',
615
- title: ( localize(12752, "Automate your project tasks")),
642
+ title: ( localize(12874, "Automate your project tasks")),
616
643
  when: 'workspaceFolderCount != 0 && workspacePlatform != \'webworker\'',
617
644
  description: ( localize(
618
- 12753,
645
+ 12875,
619
646
  "Create tasks for your common workflows and enjoy the integrated experience of running scripts and automatically checking results.\n{0}",
620
- Button(( localize(12754, "Run Auto-detected Tasks")), 'command:workbench.action.tasks.runTask')
647
+ Button(( localize(12876, "Run Auto-detected Tasks")), 'command:workbench.action.tasks.runTask')
621
648
  )),
622
649
  media: {
623
650
  type: 'svg', altText: 'Task runner.', path: 'runTask.svg',
@@ -625,11 +652,11 @@ const walkthroughs = [
625
652
  },
626
653
  {
627
654
  id: 'shortcuts',
628
- title: ( localize(12755, "Customize your shortcuts")),
655
+ title: ( localize(12877, "Customize your shortcuts")),
629
656
  description: ( localize(
630
- 12756,
657
+ 12878,
631
658
  "Once you have discovered your favorite commands, create custom keyboard shortcuts for instant access.\n{0}",
632
- Button(( localize(12706, "Keyboard Shortcuts")), 'command:toSide:workbench.action.openGlobalKeybindings')
659
+ Button(( localize(12823, "Keyboard Shortcuts")), 'command:toSide:workbench.action.openGlobalKeybindings')
633
660
  )),
634
661
  media: {
635
662
  type: 'svg', altText: 'Interactive shortcuts.', path: 'shortcuts.svg',
@@ -637,12 +664,12 @@ const walkthroughs = [
637
664
  },
638
665
  {
639
666
  id: 'workspaceTrust',
640
- title: ( localize(12757, "Safely browse and edit code")),
667
+ title: ( localize(12879, "Safely browse and edit code")),
641
668
  description: ( localize(
642
- 12758,
669
+ 12880,
643
670
  "{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(12759, "Workspace Trust")), 'https://code.visualstudio.com/docs/editor/workspace-trust'),
645
- Button(( localize(12760, "enable trust")), 'command:toSide:workbench.trust.manage')
671
+ Button(( localize(12881, "Workspace Trust")), 'https://code.visualstudio.com/docs/editor/workspace-trust'),
672
+ Button(( localize(12882, "enable trust")), 'command:toSide:workbench.trust.manage')
646
673
  )),
647
674
  when: 'workspacePlatform != \'webworker\' && !isWorkspaceTrusted && workspaceFolderCount == 0',
648
675
  media: {
@@ -654,20 +681,20 @@ const walkthroughs = [
654
681
  },
655
682
  {
656
683
  id: 'notebooks',
657
- title: ( localize(12761, "Customize Notebooks")),
684
+ title: ( localize(12883, "Customize Notebooks")),
658
685
  description: '',
659
686
  icon: setupIcon,
660
687
  isFeatured: false,
661
688
  when: `config.${NotebookSetting.openGettingStarted} && userHasOpenedNotebook`,
662
- walkthroughPageTitle: ( localize(12762, 'Notebooks')),
689
+ walkthroughPageTitle: ( localize(12884, 'Notebooks')),
663
690
  content: {
664
691
  type: 'steps',
665
692
  steps: [
666
693
  {
667
694
  completionEvents: ['onCommand:notebook.setProfile'],
668
695
  id: 'notebookProfile',
669
- title: ( localize(12763, "Select the layout for your notebooks")),
670
- description: ( localize(12764, "Get notebooks to feel just the way you prefer")),
696
+ title: ( localize(12885, "Select the layout for your notebooks")),
697
+ description: ( localize(12886, "Get notebooks to feel just the way you prefer")),
671
698
  when: 'userHasOpenedNotebook',
672
699
  media: {
673
700
  type: 'markdown', path: 'notebookProfile'