@codingame/monaco-vscode-walkthrough-service-override 17.2.1 → 18.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 (30) hide show
  1. package/package.json +10 -10
  2. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.contribution.js +23 -23
  3. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.d.ts +5 -3
  4. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.js +65 -49
  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/gettingStartedDetailsRenderer.js +1 -1
  8. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedExtensionPoint.js +37 -37
  9. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedIcons.js +2 -2
  10. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedInput.js +1 -1
  11. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService._contribution.js +4 -4
  12. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService.js +8 -7
  13. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/media/gettingStarted.css +22 -3
  14. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/startupPage.js +2 -2
  15. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent.d.ts +1 -0
  16. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent.js +191 -184
  17. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/ai-powered-suggestions.svg +146 -44
  18. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/all.svg.js +1 -0
  19. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/customize-ai.svg +164 -0
  20. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/multi-file-edits.svg +204 -114
  21. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/notebookProfile.js +3 -3
  22. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/theme_picker.js +5 -5
  23. package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/theme_picker_small.js +4 -4
  24. package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/editor/editorWalkThrough.js +3 -3
  25. package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThrough.contribution.js +3 -3
  26. package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughInput.d.ts +1 -1
  27. package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughInput.js +2 -2
  28. package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughPart.d.ts +1 -1
  29. package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughPart.js +3 -3
  30. package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/common/walkThroughUtils.js +1 -1
@@ -9,6 +9,13 @@ import { NotebookSetting } from '@codingame/monaco-vscode-api/vscode/vs/workbenc
9
9
  import { CONTEXT_ACCESSIBILITY_MODE_ENABLED } from '@codingame/monaco-vscode-api/vscode/vs/platform/accessibility/common/accessibility';
10
10
  import product from '@codingame/monaco-vscode-api/vscode/vs/platform/product/common/product';
11
11
 
12
+ const copilotSettingsMessage = ( localize(
13
+ 11863,
14
+ "{0} Copilot Free, Pro and Pro+ may show [public code]({1}) suggestions and we may use your data for product improvement. You can change these [settings]({2}) at any time.",
15
+ product.defaultChatAgent?.providerName,
16
+ product.defaultChatAgent?.publicCodeMatchesUrl,
17
+ product.defaultChatAgent?.manageSettingsUrl
18
+ ));
12
19
  class GettingStartedContentProviderRegistry {
13
20
  constructor() {
14
21
  this.providers = ( new Map());
@@ -25,14 +32,14 @@ gettingStartedContentRegistry.registerProvider('vs/workbench/contrib/welcomeGett
25
32
  gettingStartedContentRegistry.registerProvider('vs/workbench/contrib/welcomeGettingStarted/common/media/theme_picker_small', themePickerSmallContent);
26
33
  gettingStartedContentRegistry.registerProvider('vs/workbench/contrib/welcomeGettingStarted/common/media/notebookProfile', notebookProfileContent);
27
34
  gettingStartedContentRegistry.registerProvider('vs/workbench/contrib/welcomeGettingStarted/common/media/empty', () => '');
28
- const setupIcon = registerIcon('getting-started-setup', Codicon.zap, ( localize(11596, "Icon used for the setup category of welcome page")));
29
- const beginnerIcon = registerIcon('getting-started-beginner', Codicon.lightbulb, ( localize(11597, "Icon used for the beginner category of welcome page")));
35
+ const setupIcon = registerIcon('getting-started-setup', Codicon.zap, ( localize(11864, "Icon used for the setup category of welcome page")));
36
+ const beginnerIcon = registerIcon('getting-started-beginner', Codicon.lightbulb, ( localize(11865, "Icon used for the beginner category of welcome page")));
30
37
  const NEW_WELCOME_EXPERIENCE = 'NewWelcomeExperience';
31
38
  const startEntries = [
32
39
  {
33
40
  id: 'welcome.showNewFileEntries',
34
- title: ( localize(11598, "New File...")),
35
- description: ( localize(11599, "Open a new untitled text file, notebook, or custom editor.")),
41
+ title: ( localize(11866, "New File...")),
42
+ description: ( localize(11867, "Open a new untitled text file, notebook, or custom editor.")),
36
43
  icon: Codicon.newFile,
37
44
  content: {
38
45
  type: 'startEntry',
@@ -41,8 +48,8 @@ const startEntries = [
41
48
  },
42
49
  {
43
50
  id: 'topLevelOpenMac',
44
- title: ( localize(11600, "Open...")),
45
- description: ( localize(11601, "Open a file or folder to start working")),
51
+ title: ( localize(11868, "Open...")),
52
+ description: ( localize(11869, "Open a file or folder to start working")),
46
53
  icon: Codicon.folderOpened,
47
54
  when: '!isWeb && isMac',
48
55
  content: {
@@ -52,8 +59,8 @@ const startEntries = [
52
59
  },
53
60
  {
54
61
  id: 'topLevelOpenFile',
55
- title: ( localize(11602, "Open File...")),
56
- description: ( localize(11603, "Open a file to start working")),
62
+ title: ( localize(11870, "Open File...")),
63
+ description: ( localize(11871, "Open a file to start working")),
57
64
  icon: Codicon.goToFile,
58
65
  when: 'isWeb || !isMac',
59
66
  content: {
@@ -63,8 +70,8 @@ const startEntries = [
63
70
  },
64
71
  {
65
72
  id: 'topLevelOpenFolder',
66
- title: ( localize(11604, "Open Folder...")),
67
- description: ( localize(11605, "Open a folder to start working")),
73
+ title: ( localize(11872, "Open Folder...")),
74
+ description: ( localize(11873, "Open a folder to start working")),
68
75
  icon: Codicon.folderOpened,
69
76
  when: '!isWeb && !isMac',
70
77
  content: {
@@ -74,8 +81,8 @@ const startEntries = [
74
81
  },
75
82
  {
76
83
  id: 'topLevelOpenFolderWeb',
77
- title: ( localize(11604, "Open Folder...")),
78
- description: ( localize(11605, "Open a folder to start working")),
84
+ title: ( localize(11872, "Open Folder...")),
85
+ description: ( localize(11873, "Open a folder to start working")),
79
86
  icon: Codicon.folderOpened,
80
87
  when: '!openFolderWorkspaceSupport && workbenchState == \'workspace\'',
81
88
  content: {
@@ -85,8 +92,8 @@ const startEntries = [
85
92
  },
86
93
  {
87
94
  id: 'topLevelGitClone',
88
- title: ( localize(11606, "Clone Git Repository...")),
89
- description: ( localize(11607, "Clone a remote repository to a local folder")),
95
+ title: ( localize(11874, "Clone Git Repository...")),
96
+ description: ( localize(11875, "Clone a remote repository to a local folder")),
90
97
  when: 'config.git.enabled && !git.missing',
91
98
  icon: Codicon.sourceControl,
92
99
  content: {
@@ -96,9 +103,9 @@ const startEntries = [
96
103
  },
97
104
  {
98
105
  id: 'topLevelGitOpen',
99
- title: ( localize(11608, "Open Repository...")),
106
+ title: ( localize(11876, "Open Repository...")),
100
107
  description: ( localize(
101
- 11609,
108
+ 11877,
102
109
  "Connect to a remote repository or pull request to browse, search, edit, and commit"
103
110
  )),
104
111
  when: 'workspacePlatform == \'webworker\'',
@@ -110,8 +117,8 @@ const startEntries = [
110
117
  },
111
118
  {
112
119
  id: 'topLevelRemoteOpen',
113
- title: ( localize(11610, "Connect to...")),
114
- description: ( localize(11611, "Connect to remote development workspaces.")),
120
+ title: ( localize(11878, "Connect to...")),
121
+ description: ( localize(11879, "Connect to remote development workspaces.")),
115
122
  when: '!isWeb',
116
123
  icon: Codicon.remote,
117
124
  content: {
@@ -121,8 +128,8 @@ const startEntries = [
121
128
  },
122
129
  {
123
130
  id: 'topLevelOpenTunnel',
124
- title: ( localize(11612, "Open Tunnel...")),
125
- description: ( localize(11613, "Connect to a remote machine through a Tunnel")),
131
+ title: ( localize(11880, "Open Tunnel...")),
132
+ description: ( localize(11881, "Connect to a remote machine through a Tunnel")),
126
133
  when: 'isWeb && showRemoteStartEntryInWeb',
127
134
  icon: Codicon.remote,
128
135
  content: {
@@ -132,8 +139,8 @@ const startEntries = [
132
139
  },
133
140
  {
134
141
  id: 'topLevelNewWorkspaceChat',
135
- title: ( localize(11614, "New Workspace with Copilot...")),
136
- description: ( localize(11615, "Create a new workspace with Copilot")),
142
+ title: ( localize(11882, "New Workspace with Copilot...")),
143
+ description: ( localize(11883, "Create a new workspace with Copilot")),
137
144
  icon: Codicon.copilot,
138
145
  when: '!isWeb && !chatSetupHidden',
139
146
  content: {
@@ -143,15 +150,15 @@ const startEntries = [
143
150
  },
144
151
  ];
145
152
  const Button = (title, href) => `[${title}](${href})`;
146
- const CopilotStepTitle = ( localize(11616, "Use AI features with Copilot for free"));
153
+ const CopilotStepTitle = ( localize(11884, "Use AI features with Copilot for free"));
147
154
  const CopilotDescription = ( localize(
148
- 11617,
155
+ 11885,
149
156
  "You can use [Copilot]({0}) to generate code across multiple files, fix errors, ask questions about your code and much more using natural language.",
150
157
  product.defaultChatAgent?.documentationUrl ?? ''
151
158
  ));
152
- const CopilotSignedOutButton = Button(( localize(11618, "Set up Copilot")), `command:workbench.action.chat.triggerSetup`);
153
- const CopilotSignedInButton = Button(( localize(11619, "Set up Copilot")), `command:workbench.action.chat.triggerSetup`);
154
- const CopilotCompleteButton = Button(( localize(11620, "Chat with Copilot")), 'command:workbench.action.chat.open');
159
+ const CopilotSignedOutButton = Button(( localize(11886, "Set up Copilot")), `command:workbench.action.chat.triggerSetup`);
160
+ const CopilotSignedInButton = Button(( localize(11887, "Set up Copilot")), `command:workbench.action.chat.triggerSetup`);
161
+ const CopilotCompleteButton = Button(( localize(11888, "Chat with Copilot")), 'command:workbench.action.chat.open');
155
162
  function createCopilotSetupStep(id, button, when, includeTerms) {
156
163
  const description = includeTerms ?
157
164
  `${CopilotDescription}\n\n${button}` :
@@ -169,26 +176,26 @@ function createCopilotSetupStep(id, button, when, includeTerms) {
169
176
  const walkthroughs = [
170
177
  {
171
178
  id: 'Setup',
172
- title: ( localize(11621, "Get started with VS Code")),
173
- description: ( localize(11622, "Customize your editor, learn the basics, and start coding")),
179
+ title: ( localize(11889, "Get started with VS Code")),
180
+ description: ( localize(11890, "Customize your editor, learn the basics, and start coding")),
174
181
  isFeatured: true,
175
182
  icon: setupIcon,
176
183
  when: '!isWeb',
177
- walkthroughPageTitle: ( localize(11623, 'Setup VS Code')),
184
+ walkthroughPageTitle: ( localize(11891, 'Setup VS Code')),
178
185
  next: 'Beginner',
179
186
  content: {
180
187
  type: 'steps',
181
188
  steps: [
182
- createCopilotSetupStep('CopilotSetupSignedOut', CopilotSignedOutButton, 'chatSetupSignedOut', true),
183
- createCopilotSetupStep('CopilotSetupComplete', CopilotCompleteButton, 'chatSetupInstalled && (chatPlanPro || chatPlanProPlus || chatPlanBusiness || chatPlanEnterprise || chatPlanLimited)', false),
184
- createCopilotSetupStep('CopilotSetupSignedIn', CopilotSignedInButton, '!chatSetupSignedOut && (!chatSetupInstalled || chatPlanCanSignUp)', true),
189
+ createCopilotSetupStep('CopilotSetupSignedOut', CopilotSignedOutButton, 'chatEntitlementSignedOut', true),
190
+ createCopilotSetupStep('CopilotSetupComplete', CopilotCompleteButton, 'chatSetupInstalled && !chatSetupDisabled && (chatPlanPro || chatPlanProPlus || chatPlanBusiness || chatPlanEnterprise || chatPlanFree)', false),
191
+ createCopilotSetupStep('CopilotSetupSignedIn', CopilotSignedInButton, '!chatEntitlementSignedOut && (!chatSetupInstalled || chatSetupDisabled || chatPlanCanSignUp)', true),
185
192
  {
186
193
  id: 'pickColorTheme',
187
- title: ( localize(11624, "Choose your theme")),
194
+ title: ( localize(11892, "Choose your theme")),
188
195
  description: ( localize(
189
- 11625,
196
+ 11893,
190
197
  "The right theme helps you focus on your code, is easy on your eyes, and is simply more fun to use.\n{0}",
191
- Button(( localize(11626, "Browse Color Themes")), 'command:workbench.action.selectTheme')
198
+ Button(( localize(11894, "Browse Color Themes")), 'command:workbench.action.selectTheme')
192
199
  )),
193
200
  completionEvents: [
194
201
  'onSettingChanged:workbench.colorTheme',
@@ -198,11 +205,11 @@ const walkthroughs = [
198
205
  },
199
206
  {
200
207
  id: 'extensionsWeb',
201
- title: ( localize(11627, "Code with extensions")),
208
+ title: ( localize(11895, "Code with extensions")),
202
209
  description: ( localize(
203
- 11628,
210
+ 11896,
204
211
  "Extensions are VS Code's power-ups. A growing number are becoming available in the web.\n{0}",
205
- Button(( localize(11629, "Browse Popular Web Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
212
+ Button(( localize(11897, "Browse Popular Web Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
206
213
  )),
207
214
  when: 'workspacePlatform == \'webworker\'',
208
215
  media: {
@@ -211,11 +218,11 @@ const walkthroughs = [
211
218
  },
212
219
  {
213
220
  id: 'findLanguageExtensions',
214
- title: ( localize(11630, "Rich support for all your languages")),
221
+ title: ( localize(11898, "Rich support for all your languages")),
215
222
  description: ( localize(
216
- 11631,
223
+ 11899,
217
224
  "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}",
218
- Button(( localize(11632, "Browse Language Extensions")), 'command:workbench.extensions.action.showLanguageExtensions')
225
+ Button(( localize(11900, "Browse Language Extensions")), 'command:workbench.extensions.action.showLanguageExtensions')
219
226
  )),
220
227
  when: 'workspacePlatform != \'webworker\'',
221
228
  media: {
@@ -224,11 +231,11 @@ const walkthroughs = [
224
231
  },
225
232
  {
226
233
  id: 'settingsAndSync',
227
- title: ( localize(11633, "Tune your settings")),
234
+ title: ( localize(11901, "Tune your settings")),
228
235
  description: ( localize(
229
- 11634,
236
+ 11902,
230
237
  "Customize every aspect of VS Code and your extensions to your liking. [Back up and sync](command:workbench.userDataSync.actions.turnOn) your essential customizations across all your devices.\n{0}",
231
- Button(( localize(11635, "Open Settings")), 'command:toSide:workbench.action.openSettings')
238
+ Button(( localize(11903, "Open Settings")), 'command:toSide:workbench.action.openSettings')
232
239
  )),
233
240
  when: 'syncStatus != uninitialized',
234
241
  completionEvents: ['onEvent:sync-enabled'],
@@ -238,21 +245,21 @@ const walkthroughs = [
238
245
  },
239
246
  {
240
247
  id: 'commandPaletteTask',
241
- title: ( localize(11636, "Unlock productivity with the Command Palette ")),
248
+ title: ( localize(11904, "Unlock productivity with the Command Palette ")),
242
249
  description: ( localize(
243
- 11637,
250
+ 11905,
244
251
  "Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
245
- Button(( localize(11638, "Open Command Palette")), 'command:workbench.action.showCommands')
252
+ Button(( localize(11906, "Open Command Palette")), 'command:workbench.action.showCommands')
246
253
  )),
247
254
  media: { type: 'svg', altText: 'Command Palette overlay for searching and executing commands.', path: 'commandPalette.svg' },
248
255
  },
249
256
  {
250
257
  id: 'quickOpen',
251
- title: ( localize(11639, "Quickly navigate between your files")),
258
+ title: ( localize(11907, "Quickly navigate between your files")),
252
259
  description: ( localize(
253
- 11640,
260
+ 11908,
254
261
  "Navigate between files in an instant with one keystroke. Tip: Open multiple files by pressing the right arrow key.\n{0}",
255
- Button(( localize(11641, "Quick Open a File")), 'command:toSide:workbench.action.quickOpen')
262
+ Button(( localize(11909, "Quick Open a File")), 'command:toSide:workbench.action.quickOpen')
256
263
  )),
257
264
  when: 'workspaceFolderCount != 0',
258
265
  media: {
@@ -261,11 +268,11 @@ const walkthroughs = [
261
268
  },
262
269
  {
263
270
  id: 'videoTutorial',
264
- title: ( localize(11642, "Watch video tutorials")),
271
+ title: ( localize(11910, "Watch video tutorials")),
265
272
  description: ( localize(
266
- 11643,
273
+ 11911,
267
274
  "Watch the first in a series of short & practical video tutorials for VS Code's key features.\n{0}",
268
- Button(( localize(11644, "Watch Tutorial")), 'https://aka.ms/vscode-getting-started-video')
275
+ Button(( localize(11912, "Watch Tutorial")), 'https://aka.ms/vscode-getting-started-video')
269
276
  )),
270
277
  media: { type: 'svg', altText: 'VS Code Settings', path: 'learn.svg' },
271
278
  }
@@ -274,23 +281,23 @@ const walkthroughs = [
274
281
  },
275
282
  {
276
283
  id: 'SetupWeb',
277
- title: ( localize(11645, "Get Started with VS Code for the Web")),
278
- description: ( localize(11646, "Customize your editor, learn the basics, and start coding")),
284
+ title: ( localize(11913, "Get Started with VS Code for the Web")),
285
+ description: ( localize(11914, "Customize your editor, learn the basics, and start coding")),
279
286
  isFeatured: true,
280
287
  icon: setupIcon,
281
288
  when: 'isWeb',
282
289
  next: 'Beginner',
283
- walkthroughPageTitle: ( localize(11647, 'Setup VS Code Web')),
290
+ walkthroughPageTitle: ( localize(11915, 'Setup VS Code Web')),
284
291
  content: {
285
292
  type: 'steps',
286
293
  steps: [
287
294
  {
288
295
  id: 'pickColorThemeWeb',
289
- title: ( localize(11624, "Choose your theme")),
296
+ title: ( localize(11892, "Choose your theme")),
290
297
  description: ( localize(
291
- 11625,
298
+ 11893,
292
299
  "The right theme helps you focus on your code, is easy on your eyes, and is simply more fun to use.\n{0}",
293
- Button(( localize(11626, "Browse Color Themes")), 'command:workbench.action.selectTheme')
300
+ Button(( localize(11894, "Browse Color Themes")), 'command:workbench.action.selectTheme')
294
301
  )),
295
302
  completionEvents: [
296
303
  'onSettingChanged:workbench.colorTheme',
@@ -300,11 +307,11 @@ const walkthroughs = [
300
307
  },
301
308
  {
302
309
  id: 'menuBarWeb',
303
- title: ( localize(11648, "Just the right amount of UI")),
310
+ title: ( localize(11916, "Just the right amount of UI")),
304
311
  description: ( localize(
305
- 11649,
312
+ 11917,
306
313
  "The full menu bar is available in the dropdown menu to make room for your code. Toggle its appearance for faster access. \n{0}",
307
- Button(( localize(11650, "Toggle Menu Bar")), 'command:workbench.action.toggleMenuBar')
314
+ Button(( localize(11918, "Toggle Menu Bar")), 'command:workbench.action.toggleMenuBar')
308
315
  )),
309
316
  when: 'isWeb',
310
317
  media: {
@@ -313,11 +320,11 @@ const walkthroughs = [
313
320
  },
314
321
  {
315
322
  id: 'extensionsWebWeb',
316
- title: ( localize(11627, "Code with extensions")),
323
+ title: ( localize(11895, "Code with extensions")),
317
324
  description: ( localize(
318
- 11628,
325
+ 11896,
319
326
  "Extensions are VS Code's power-ups. A growing number are becoming available in the web.\n{0}",
320
- Button(( localize(11629, "Browse Popular Web Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
327
+ Button(( localize(11897, "Browse Popular Web Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
321
328
  )),
322
329
  when: 'workspacePlatform == \'webworker\'',
323
330
  media: {
@@ -326,11 +333,11 @@ const walkthroughs = [
326
333
  },
327
334
  {
328
335
  id: 'findLanguageExtensionsWeb',
329
- title: ( localize(11630, "Rich support for all your languages")),
336
+ title: ( localize(11898, "Rich support for all your languages")),
330
337
  description: ( localize(
331
- 11631,
338
+ 11899,
332
339
  "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}",
333
- Button(( localize(11632, "Browse Language Extensions")), 'command:workbench.extensions.action.showLanguageExtensions')
340
+ Button(( localize(11900, "Browse Language Extensions")), 'command:workbench.extensions.action.showLanguageExtensions')
334
341
  )),
335
342
  when: 'workspacePlatform != \'webworker\'',
336
343
  media: {
@@ -339,11 +346,11 @@ const walkthroughs = [
339
346
  },
340
347
  {
341
348
  id: 'settingsSyncWeb',
342
- title: ( localize(11651, "Sync settings across devices")),
349
+ title: ( localize(11919, "Sync settings across devices")),
343
350
  description: ( localize(
344
- 11652,
351
+ 11920,
345
352
  "Keep your essential customizations backed up and updated across all your devices.\n{0}",
346
- Button(( localize(11653, "Backup and Sync Settings")), 'command:workbench.userDataSync.actions.turnOn')
353
+ Button(( localize(11921, "Backup and Sync Settings")), 'command:workbench.userDataSync.actions.turnOn')
347
354
  )),
348
355
  when: 'syncStatus != uninitialized',
349
356
  completionEvents: ['onEvent:sync-enabled'],
@@ -353,22 +360,22 @@ const walkthroughs = [
353
360
  },
354
361
  {
355
362
  id: 'commandPaletteTaskWeb',
356
- title: ( localize(11636, "Unlock productivity with the Command Palette ")),
363
+ title: ( localize(11904, "Unlock productivity with the Command Palette ")),
357
364
  description: ( localize(
358
- 11637,
365
+ 11905,
359
366
  "Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
360
- Button(( localize(11638, "Open Command Palette")), 'command:workbench.action.showCommands')
367
+ Button(( localize(11906, "Open Command Palette")), 'command:workbench.action.showCommands')
361
368
  )),
362
369
  media: { type: 'svg', altText: 'Command Palette overlay for searching and executing commands.', path: 'commandPalette.svg' },
363
370
  },
364
371
  {
365
372
  id: 'pickAFolderTask-WebWeb',
366
- title: ( localize(11654, "Open up your code")),
373
+ title: ( localize(11922, "Open up your code")),
367
374
  description: ( localize(
368
- 11655,
375
+ 11923,
369
376
  "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}",
370
- Button(( localize(11656, "Open Folder")), 'command:workbench.action.addRootFolder'),
371
- Button(( localize(11657, "Open Repository")), 'command:remoteHub.openRepository')
377
+ Button(( localize(11924, "Open Folder")), 'command:workbench.action.addRootFolder'),
378
+ Button(( localize(11925, "Open Repository")), 'command:remoteHub.openRepository')
372
379
  )),
373
380
  when: 'workspaceFolderCount == 0',
374
381
  media: {
@@ -377,11 +384,11 @@ const walkthroughs = [
377
384
  },
378
385
  {
379
386
  id: 'quickOpenWeb',
380
- title: ( localize(11639, "Quickly navigate between your files")),
387
+ title: ( localize(11907, "Quickly navigate between your files")),
381
388
  description: ( localize(
382
- 11640,
389
+ 11908,
383
390
  "Navigate between files in an instant with one keystroke. Tip: Open multiple files by pressing the right arrow key.\n{0}",
384
- Button(( localize(11641, "Quick Open a File")), 'command:toSide:workbench.action.quickOpen')
391
+ Button(( localize(11909, "Quick Open a File")), 'command:toSide:workbench.action.quickOpen')
385
392
  )),
386
393
  when: 'workspaceFolderCount != 0',
387
394
  media: {
@@ -393,26 +400,26 @@ const walkthroughs = [
393
400
  },
394
401
  {
395
402
  id: 'SetupAccessibility',
396
- title: ( localize(11658, "Get Started with Accessibility Features")),
403
+ title: ( localize(11926, "Get Started with Accessibility Features")),
397
404
  description: ( localize(
398
- 11659,
405
+ 11927,
399
406
  "Learn the tools and shortcuts that make VS Code accessible. Note that some actions are not actionable from within the context of the walkthrough."
400
407
  )),
401
408
  isFeatured: true,
402
409
  icon: setupIcon,
403
410
  when: CONTEXT_ACCESSIBILITY_MODE_ENABLED.key,
404
411
  next: 'Setup',
405
- walkthroughPageTitle: ( localize(11660, 'Setup VS Code Accessibility')),
412
+ walkthroughPageTitle: ( localize(11928, 'Setup VS Code Accessibility')),
406
413
  content: {
407
414
  type: 'steps',
408
415
  steps: [
409
416
  {
410
417
  id: 'accessibilityHelp',
411
- title: ( localize(11661, "Use the accessibility help dialog to learn about features")),
418
+ title: ( localize(11929, "Use the accessibility help dialog to learn about features")),
412
419
  description: ( localize(
413
- 11662,
420
+ 11930,
414
421
  "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}",
415
- Button(( localize(11663, "Open Accessibility Help")), 'command:editor.action.accessibilityHelp')
422
+ Button(( localize(11931, "Open Accessibility Help")), 'command:editor.action.accessibilityHelp')
416
423
  )),
417
424
  media: {
418
425
  type: 'markdown', path: 'empty'
@@ -421,13 +428,13 @@ const walkthroughs = [
421
428
  {
422
429
  id: 'accessibleView',
423
430
  title: ( localize(
424
- 11664,
431
+ 11932,
425
432
  "Screen reader users can inspect content line by line, character by character in the accessible view."
426
433
  )),
427
434
  description: ( localize(
428
- 11665,
435
+ 11933,
429
436
  "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}",
430
- Button(( localize(11666, "Open Accessible View")), 'command:editor.action.accessibleView')
437
+ Button(( localize(11934, "Open Accessible View")), 'command:editor.action.accessibleView')
431
438
  )),
432
439
  media: {
433
440
  type: 'markdown', path: 'empty'
@@ -435,11 +442,11 @@ const walkthroughs = [
435
442
  },
436
443
  {
437
444
  id: 'verbositySettings',
438
- title: ( localize(11667, "Control the verbosity of aria labels")),
445
+ title: ( localize(11935, "Control the verbosity of aria labels")),
439
446
  description: ( localize(
440
- 11668,
447
+ 11936,
441
448
  "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}",
442
- Button(( localize(11669, "Open Accessibility Settings")), 'command:workbench.action.openAccessibilitySettings')
449
+ Button(( localize(11937, "Open Accessibility Settings")), 'command:workbench.action.openAccessibilitySettings')
443
450
  )),
444
451
  media: {
445
452
  type: 'markdown', path: 'empty'
@@ -447,21 +454,21 @@ const walkthroughs = [
447
454
  },
448
455
  {
449
456
  id: 'commandPaletteTaskAccessibility',
450
- title: ( localize(11670, "Unlock productivity with the Command Palette ")),
457
+ title: ( localize(11938, "Unlock productivity with the Command Palette ")),
451
458
  description: ( localize(
452
- 11671,
459
+ 11939,
453
460
  "Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
454
- Button(( localize(11638, "Open Command Palette")), 'command:workbench.action.showCommands')
461
+ Button(( localize(11906, "Open Command Palette")), 'command:workbench.action.showCommands')
455
462
  )),
456
463
  media: { type: 'markdown', path: 'empty' },
457
464
  },
458
465
  {
459
466
  id: 'keybindingsAccessibility',
460
- title: ( localize(11672, "Customize your keyboard shortcuts")),
467
+ title: ( localize(11940, "Customize your keyboard shortcuts")),
461
468
  description: ( localize(
462
- 11673,
469
+ 11941,
463
470
  "Once you have discovered your favorite commands, create custom keyboard shortcuts for instant access.\n{0}",
464
- Button(( localize(11674, "Keyboard Shortcuts")), 'command:toSide:workbench.action.openGlobalKeybindings')
471
+ Button(( localize(11942, "Keyboard Shortcuts")), 'command:toSide:workbench.action.openGlobalKeybindings')
465
472
  )),
466
473
  media: {
467
474
  type: 'markdown', path: 'empty',
@@ -470,14 +477,14 @@ const walkthroughs = [
470
477
  {
471
478
  id: 'accessibilitySignals',
472
479
  title: ( localize(
473
- 11675,
480
+ 11943,
474
481
  "Fine tune which accessibility signals you want to receive via audio or a braille device"
475
482
  )),
476
483
  description: ( localize(
477
- 11676,
484
+ 11944,
478
485
  "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}",
479
- Button(( localize(11677, "List Signal Sounds")), 'command:signals.sounds.help'),
480
- Button(( localize(11678, "List Signal Announcements")), 'command:accessibility.announcement.help')
486
+ Button(( localize(11945, "List Signal Sounds")), 'command:signals.sounds.help'),
487
+ Button(( localize(11946, "List Signal Announcements")), 'command:accessibility.announcement.help')
481
488
  )),
482
489
  media: {
483
490
  type: 'markdown', path: 'empty'
@@ -486,13 +493,13 @@ const walkthroughs = [
486
493
  {
487
494
  id: 'hover',
488
495
  title: ( localize(
489
- 11679,
496
+ 11947,
490
497
  "Access the hover in the editor to get more information on a variable or symbol"
491
498
  )),
492
499
  description: ( localize(
493
- 11680,
500
+ 11948,
494
501
  "While focus is in the editor on a variable or symbol, a hover can be can be focused with the Show or Open Hover command.\n{0}",
495
- Button(( localize(11681, "Show or Focus Hover")), 'command:editor.action.showHover')
502
+ Button(( localize(11949, "Show or Focus Hover")), 'command:editor.action.showHover')
496
503
  )),
497
504
  media: {
498
505
  type: 'markdown', path: 'empty'
@@ -500,11 +507,11 @@ const walkthroughs = [
500
507
  },
501
508
  {
502
509
  id: 'goToSymbol',
503
- title: ( localize(11682, "Navigate to symbols in a file")),
510
+ title: ( localize(11950, "Navigate to symbols in a file")),
504
511
  description: ( localize(
505
- 11683,
512
+ 11951,
506
513
  "The Go to Symbol command is useful for navigating between important landmarks in a document.\n{0}",
507
- Button(( localize(11684, "Go to Symbol")), 'command:editor.action.goToSymbol')
514
+ Button(( localize(11952, "Go to Symbol")), 'command:editor.action.goToSymbol')
508
515
  )),
509
516
  media: {
510
517
  type: 'markdown', path: 'empty'
@@ -513,14 +520,14 @@ const walkthroughs = [
513
520
  {
514
521
  id: 'codeFolding',
515
522
  title: ( localize(
516
- 11685,
523
+ 11953,
517
524
  "Use code folding to collapse blocks of code and focus on the code you're interested in."
518
525
  )),
519
526
  description: ( localize(
520
- 11686,
527
+ 11954,
521
528
  "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",
522
- Button(( localize(11687, "Toggle Fold")), 'command:editor.toggleFold'),
523
- Button(( localize(11688, "Toggle Fold Recursively")), 'command:editor.toggleFoldRecursively')
529
+ Button(( localize(11955, "Toggle Fold")), 'command:editor.toggleFold'),
530
+ Button(( localize(11956, "Toggle Fold Recursively")), 'command:editor.toggleFoldRecursively')
524
531
  )),
525
532
  media: {
526
533
  type: 'markdown', path: 'empty'
@@ -528,12 +535,12 @@ const walkthroughs = [
528
535
  },
529
536
  {
530
537
  id: 'intellisense',
531
- title: ( localize(11689, "Use Intellisense to improve coding efficiency")),
538
+ title: ( localize(11957, "Use Intellisense to improve coding efficiency")),
532
539
  description: ( localize(
533
- 11690,
540
+ 11958,
534
541
  "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.",
535
- Button(( localize(11691, "Trigger Intellisense")), 'command:editor.action.triggerSuggest'),
536
- Button(( localize(11692, 'Trigger Inline Suggestion')), 'command:editor.action.inlineSuggest.trigger')
542
+ Button(( localize(11959, "Trigger Intellisense")), 'command:editor.action.triggerSuggest'),
543
+ Button(( localize(11960, 'Trigger Inline Suggestion')), 'command:editor.action.inlineSuggest.trigger')
537
544
  )),
538
545
  media: {
539
546
  type: 'markdown', path: 'empty'
@@ -541,11 +548,11 @@ const walkthroughs = [
541
548
  },
542
549
  {
543
550
  id: 'accessibilitySettings',
544
- title: ( localize(11693, "Configure accessibility settings")),
551
+ title: ( localize(11961, "Configure accessibility settings")),
545
552
  description: ( localize(
546
- 11694,
553
+ 11962,
547
554
  "Accessibility settings can be configured by running the Open Accessibility Settings command.\n{0}",
548
- Button(( localize(11695, "Open Accessibility Settings")), 'command:workbench.action.openAccessibilitySettings')
555
+ Button(( localize(11963, "Open Accessibility Settings")), 'command:workbench.action.openAccessibilitySettings')
549
556
  )),
550
557
  media: { type: 'markdown', path: 'empty' }
551
558
  }
@@ -555,20 +562,20 @@ const walkthroughs = [
555
562
  {
556
563
  id: 'Beginner',
557
564
  isFeatured: false,
558
- title: ( localize(11696, "Learn the Fundamentals")),
565
+ title: ( localize(11964, "Learn the Fundamentals")),
559
566
  icon: beginnerIcon,
560
- description: ( localize(11697, "Get an overview of the most essential features")),
561
- walkthroughPageTitle: ( localize(11698, 'Essential Features')),
567
+ description: ( localize(11965, "Get an overview of the most essential features")),
568
+ walkthroughPageTitle: ( localize(11966, 'Essential Features')),
562
569
  content: {
563
570
  type: 'steps',
564
571
  steps: [
565
572
  {
566
573
  id: 'extensions',
567
- title: ( localize(11627, "Code with extensions")),
574
+ title: ( localize(11895, "Code with extensions")),
568
575
  description: ( localize(
569
- 11699,
576
+ 11967,
570
577
  "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}",
571
- Button(( localize(11700, "Browse Popular Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
578
+ Button(( localize(11968, "Browse Popular Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
572
579
  )),
573
580
  when: 'workspacePlatform != \'webworker\'',
574
581
  media: {
@@ -577,11 +584,11 @@ const walkthroughs = [
577
584
  },
578
585
  {
579
586
  id: 'terminal',
580
- title: ( localize(11701, "Built-in terminal")),
587
+ title: ( localize(11969, "Built-in terminal")),
581
588
  description: ( localize(
582
- 11702,
589
+ 11970,
583
590
  "Quickly run shell commands and monitor build output, right next to your code.\n{0}",
584
- Button(( localize(11703, "Open Terminal")), 'command:workbench.action.terminal.toggleTerminal')
591
+ Button(( localize(11971, "Open Terminal")), 'command:workbench.action.terminal.toggleTerminal')
585
592
  )),
586
593
  when: 'workspacePlatform != \'webworker\' && remoteName != codespaces && !terminalIsOpen',
587
594
  media: {
@@ -590,11 +597,11 @@ const walkthroughs = [
590
597
  },
591
598
  {
592
599
  id: 'debugging',
593
- title: ( localize(11704, "Watch your code in action")),
600
+ title: ( localize(11972, "Watch your code in action")),
594
601
  description: ( localize(
595
- 11705,
602
+ 11973,
596
603
  "Accelerate your edit, build, test, and debug loop by setting up a launch configuration.\n{0}",
597
- Button(( localize(11706, "Run your Project")), 'command:workbench.action.debug.selectandstart')
604
+ Button(( localize(11974, "Run your Project")), 'command:workbench.action.debug.selectandstart')
598
605
  )),
599
606
  when: 'workspacePlatform != \'webworker\' && workspaceFolderCount != 0',
600
607
  media: {
@@ -603,11 +610,11 @@ const walkthroughs = [
603
610
  },
604
611
  {
605
612
  id: 'scmClone',
606
- title: ( localize(11707, "Track your code with Git")),
613
+ title: ( localize(11975, "Track your code with Git")),
607
614
  description: ( localize(
608
- 11708,
615
+ 11976,
609
616
  "Set up the built-in version control for your project to track your changes and collaborate with others.\n{0}",
610
- Button(( localize(11709, "Clone Repository")), 'command:git.clone')
617
+ Button(( localize(11977, "Clone Repository")), 'command:git.clone')
611
618
  )),
612
619
  when: 'config.git.enabled && !git.missing && workspaceFolderCount == 0',
613
620
  media: {
@@ -616,11 +623,11 @@ const walkthroughs = [
616
623
  },
617
624
  {
618
625
  id: 'scmSetup',
619
- title: ( localize(11707, "Track your code with Git")),
626
+ title: ( localize(11975, "Track your code with Git")),
620
627
  description: ( localize(
621
- 11710,
628
+ 11978,
622
629
  "Set up the built-in version control for your project to track your changes and collaborate with others.\n{0}",
623
- Button(( localize(11711, "Initialize Git Repository")), 'command:git.init')
630
+ Button(( localize(11979, "Initialize Git Repository")), 'command:git.init')
624
631
  )),
625
632
  when: 'config.git.enabled && !git.missing && workspaceFolderCount != 0 && gitOpenRepositoryCount == 0',
626
633
  media: {
@@ -629,11 +636,11 @@ const walkthroughs = [
629
636
  },
630
637
  {
631
638
  id: 'scm',
632
- title: ( localize(11707, "Track your code with Git")),
639
+ title: ( localize(11975, "Track your code with Git")),
633
640
  description: ( localize(
634
- 11712,
641
+ 11980,
635
642
  "No more looking up Git commands! Git and GitHub workflows are seamlessly integrated.\n{0}",
636
- Button(( localize(11713, "Open Source Control")), 'command:workbench.view.scm')
643
+ Button(( localize(11981, "Open Source Control")), 'command:workbench.view.scm')
637
644
  )),
638
645
  when: 'config.git.enabled && !git.missing && workspaceFolderCount != 0 && gitOpenRepositoryCount != 0 && activeViewlet != \'workbench.view.scm\'',
639
646
  media: {
@@ -642,11 +649,11 @@ const walkthroughs = [
642
649
  },
643
650
  {
644
651
  id: 'installGit',
645
- title: ( localize(11714, "Install Git")),
652
+ title: ( localize(11982, "Install Git")),
646
653
  description: ( localize(
647
- 11715,
654
+ 11983,
648
655
  "Install Git to track changes in your projects.\n{0}\n{1}Reload window{2} after installation to complete Git setup.",
649
- Button(( localize(11716, "Install Git")), 'https://aka.ms/vscode-install-git'),
656
+ Button(( localize(11984, "Install Git")), 'https://aka.ms/vscode-install-git'),
650
657
  '[',
651
658
  '](command:workbench.action.reloadWindow)'
652
659
  )),
@@ -660,12 +667,12 @@ const walkthroughs = [
660
667
  },
661
668
  {
662
669
  id: 'tasks',
663
- title: ( localize(11717, "Automate your project tasks")),
670
+ title: ( localize(11985, "Automate your project tasks")),
664
671
  when: 'workspaceFolderCount != 0 && workspacePlatform != \'webworker\'',
665
672
  description: ( localize(
666
- 11718,
673
+ 11986,
667
674
  "Create tasks for your common workflows and enjoy the integrated experience of running scripts and automatically checking results.\n{0}",
668
- Button(( localize(11719, "Run Auto-detected Tasks")), 'command:workbench.action.tasks.runTask')
675
+ Button(( localize(11987, "Run Auto-detected Tasks")), 'command:workbench.action.tasks.runTask')
669
676
  )),
670
677
  media: {
671
678
  type: 'svg', altText: 'Task runner.', path: 'runTask.svg',
@@ -673,11 +680,11 @@ const walkthroughs = [
673
680
  },
674
681
  {
675
682
  id: 'shortcuts',
676
- title: ( localize(11720, "Customize your shortcuts")),
683
+ title: ( localize(11988, "Customize your shortcuts")),
677
684
  description: ( localize(
678
- 11721,
685
+ 11989,
679
686
  "Once you have discovered your favorite commands, create custom keyboard shortcuts for instant access.\n{0}",
680
- Button(( localize(11674, "Keyboard Shortcuts")), 'command:toSide:workbench.action.openGlobalKeybindings')
687
+ Button(( localize(11942, "Keyboard Shortcuts")), 'command:toSide:workbench.action.openGlobalKeybindings')
681
688
  )),
682
689
  media: {
683
690
  type: 'svg', altText: 'Interactive shortcuts.', path: 'shortcuts.svg',
@@ -685,12 +692,12 @@ const walkthroughs = [
685
692
  },
686
693
  {
687
694
  id: 'workspaceTrust',
688
- title: ( localize(11722, "Safely browse and edit code")),
695
+ title: ( localize(11990, "Safely browse and edit code")),
689
696
  description: ( localize(
690
- 11723,
697
+ 11991,
691
698
  "{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.",
692
- Button(( localize(11724, "Workspace Trust")), 'https://code.visualstudio.com/docs/editor/workspace-trust'),
693
- Button(( localize(11725, "enable trust")), 'command:toSide:workbench.trust.manage')
699
+ Button(( localize(11992, "Workspace Trust")), 'https://code.visualstudio.com/docs/editor/workspace-trust'),
700
+ Button(( localize(11993, "enable trust")), 'command:toSide:workbench.trust.manage')
694
701
  )),
695
702
  when: 'workspacePlatform != \'webworker\' && !isWorkspaceTrusted && workspaceFolderCount == 0',
696
703
  media: {
@@ -702,20 +709,20 @@ const walkthroughs = [
702
709
  },
703
710
  {
704
711
  id: 'notebooks',
705
- title: ( localize(11726, "Customize Notebooks")),
712
+ title: ( localize(11994, "Customize Notebooks")),
706
713
  description: '',
707
714
  icon: setupIcon,
708
715
  isFeatured: false,
709
716
  when: `config.${NotebookSetting.openGettingStarted} && userHasOpenedNotebook`,
710
- walkthroughPageTitle: ( localize(11727, 'Notebooks')),
717
+ walkthroughPageTitle: ( localize(11995, 'Notebooks')),
711
718
  content: {
712
719
  type: 'steps',
713
720
  steps: [
714
721
  {
715
722
  completionEvents: ['onCommand:notebook.setProfile'],
716
723
  id: 'notebookProfile',
717
- title: ( localize(11728, "Select the layout for your notebooks")),
718
- description: ( localize(11729, "Get notebooks to feel just the way you prefer")),
724
+ title: ( localize(11996, "Select the layout for your notebooks")),
725
+ description: ( localize(11997, "Get notebooks to feel just the way you prefer")),
719
726
  when: 'userHasOpenedNotebook',
720
727
  media: {
721
728
  type: 'markdown', path: 'notebookProfile'
@@ -726,20 +733,20 @@ const walkthroughs = [
726
733
  },
727
734
  {
728
735
  id: `${NEW_WELCOME_EXPERIENCE}`,
729
- title: ( localize(11730, "Get started with VS Code")),
730
- description: ( localize(11731, "Supercharge coding with AI")),
736
+ title: ( localize(11998, "Get started with VS Code")),
737
+ description: ( localize(11999, "Supercharge coding with AI")),
731
738
  isFeatured: false,
732
739
  icon: setupIcon,
733
740
  when: '!isWeb',
734
- walkthroughPageTitle: ( localize(11732, 'Set up VS Code')),
741
+ walkthroughPageTitle: ( localize(12000, 'Set up VS Code')),
735
742
  content: {
736
743
  type: 'steps',
737
744
  steps: [
738
745
  {
739
746
  id: 'copilotSetup.chat',
740
- title: ( localize(11733, "Agent mode")),
747
+ title: ( localize(12001, "Agent mode")),
741
748
  description: ( localize(
742
- 11734,
749
+ 12002,
743
750
  "Analyzes the problem, plans next steps, and makes changes for you."
744
751
  )),
745
752
  media: {
@@ -748,41 +755,41 @@ const walkthroughs = [
748
755
  },
749
756
  {
750
757
  id: 'copilotSetup.inline',
751
- title: ( localize(11735, "Next Edit Suggestions")),
752
- description: ( localize(11736, "Get code suggestions that predict your next edit.")),
758
+ title: ( localize(12003, "Next edit suggestions")),
759
+ description: ( localize(12004, "Get code suggestions that predict your next edit.")),
753
760
  media: {
754
- type: 'svg', altText: 'Next Edit Suggestions', path: 'ai-powered-suggestions.svg'
761
+ type: 'svg', altText: 'Next edit suggestions', path: 'ai-powered-suggestions.svg'
755
762
  },
756
763
  },
757
764
  {
758
765
  id: 'copilotSetup.customize',
759
- title: ( localize(11737, "Personalized to how you work")),
766
+ title: ( localize(12005, "Personalized to how you work")),
760
767
  description: ( localize(
761
- 11738,
768
+ 12006,
762
769
  "Swap models, add agent mode tools, and create personalized instructions.\n{0}",
763
- Button(( localize(11739, "Set up AI")), 'command:workbench.action.chat.triggerSetup')
770
+ Button(( localize(12007, "Set up AI")), 'command:workbench.action.chat.triggerSetupWithoutDialog')
764
771
  )),
765
772
  media: {
766
- type: 'svg', altText: 'Personalize', path: 'multi-file-edits.svg'
773
+ type: 'svg', altText: 'Personalize', path: 'customize-ai.svg'
767
774
  },
768
775
  },
769
776
  {
770
777
  id: 'newCommandPaletteTask',
771
- title: ( localize(11740, "All commands within reach")),
778
+ title: ( localize(12008, "All commands within reach")),
772
779
  description: ( localize(
773
- 11637,
780
+ 11905,
774
781
  "Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
775
- Button(( localize(11638, "Open Command Palette")), 'command:workbench.action.showCommands')
782
+ Button(( localize(11906, "Open Command Palette")), 'command:workbench.action.showCommands')
776
783
  )),
777
784
  media: { type: 'svg', altText: 'Command Palette overlay for searching and executing commands.', path: 'commandPalette.svg' },
778
785
  },
779
786
  {
780
787
  id: 'newPickColorTheme',
781
- title: ( localize(11624, "Choose your theme")),
788
+ title: ( localize(11892, "Choose your theme")),
782
789
  description: ( localize(
783
- 11625,
790
+ 11893,
784
791
  "The right theme helps you focus on your code, is easy on your eyes, and is simply more fun to use.\n{0}",
785
- Button(( localize(11626, "Browse Color Themes")), 'command:workbench.action.selectTheme')
792
+ Button(( localize(11894, "Browse Color Themes")), 'command:workbench.action.selectTheme')
786
793
  )),
787
794
  completionEvents: [
788
795
  'onSettingChanged:workbench.colorTheme',
@@ -792,11 +799,11 @@ const walkthroughs = [
792
799
  },
793
800
  {
794
801
  id: 'newFindLanguageExtensions',
795
- title: ( localize(11741, "Support for all languages")),
802
+ title: ( localize(12009, "Support for all languages")),
796
803
  description: ( localize(
797
- 11742,
804
+ 12010,
798
805
  "Install the language extensions you need in your toolkit.\n{0}",
799
- Button(( localize(11632, "Browse Language Extensions")), 'command:workbench.extensions.action.showLanguageExtensions')
806
+ Button(( localize(11900, "Browse Language Extensions")), 'command:workbench.extensions.action.showLanguageExtensions')
800
807
  )),
801
808
  when: 'workspacePlatform != \'webworker\'',
802
809
  media: {
@@ -805,11 +812,11 @@ const walkthroughs = [
805
812
  },
806
813
  {
807
814
  id: 'newSettingsAndSync',
808
- title: ( localize(11743, "Customize every aspect of VS Code")),
815
+ title: ( localize(12011, "Customize every aspect of VS Code")),
809
816
  description: ( localize(
810
- 11744,
817
+ 12012,
811
818
  "[Back up and sync](command:workbench.userDataSync.actions.turnOn) settings across all your devices.\n{0}",
812
- Button(( localize(11635, "Open Settings")), 'command:toSide:workbench.action.openSettings')
819
+ Button(( localize(11903, "Open Settings")), 'command:toSide:workbench.action.openSettings')
813
820
  )),
814
821
  when: 'syncStatus != uninitialized',
815
822
  completionEvents: ['onEvent:sync-enabled'],
@@ -822,4 +829,4 @@ const walkthroughs = [
822
829
  }
823
830
  ];
824
831
 
825
- export { NEW_WELCOME_EXPERIENCE, gettingStartedContentRegistry, startEntries, walkthroughs };
832
+ export { NEW_WELCOME_EXPERIENCE, copilotSettingsMessage, gettingStartedContentRegistry, startEntries, walkthroughs };