Skip to content

Commit 8fca86d

Browse files
authored
Change order of getting started walkthrough steps (microsoft#196112)
* Change order of getting started walkthrough steps * Change up Step and button title.
1 parent fcb814b commit 8fca86d

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

src/vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent.ts

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,16 @@ export const walkthroughs: GettingStartedWalkthroughContent = [
180180
content: {
181181
type: 'steps',
182182
steps: [
183+
{
184+
id: 'settingsSync',
185+
title: localize('gettingStarted.settingsSync.title', "Personalize your VS Code"),
186+
description: localize('gettingStarted.settingsSync.description.interpolated', "Keep your essential VS Code customizations backed up and updated across all your devices.\n{0}", Button(localize('enableSync', "Backup and Sync Settings"), 'command:workbench.userDataSync.actions.turnOn')),
187+
when: 'syncStatus != uninitialized',
188+
completionEvents: ['onEvent:sync-enabled'],
189+
media: {
190+
type: 'svg', altText: 'The "Turn on Sync" entry in the settings gear menu.', path: 'settingsSync.svg'
191+
},
192+
},
183193
{
184194
id: 'pickColorTheme',
185195
title: localize('gettingStarted.pickColor.title', "Choose the look you want"),
@@ -190,16 +200,6 @@ export const walkthroughs: GettingStartedWalkthroughContent = [
190200
],
191201
media: { type: 'markdown', path: 'theme_picker', }
192202
},
193-
{
194-
id: 'settingsSync',
195-
title: localize('gettingStarted.settingsSync.title', "Sync to and from other devices"),
196-
description: localize('gettingStarted.settingsSync.description.interpolated', "Keep your essential VS Code customizations backed up and updated across all your devices.\n{0}", Button(localize('enableSync', "Enable Settings Sync"), 'command:workbench.userDataSync.actions.turnOn')),
197-
when: 'syncStatus != uninitialized',
198-
completionEvents: ['onEvent:sync-enabled'],
199-
media: {
200-
type: 'svg', altText: 'The "Turn on Sync" entry in the settings gear menu.', path: 'settingsSync.svg'
201-
},
202-
},
203203
{
204204
id: 'commandPaletteTask',
205205
title: localize('gettingStarted.commandPalette.title', "One shortcut to access everything"),
@@ -266,6 +266,16 @@ export const walkthroughs: GettingStartedWalkthroughContent = [
266266
content: {
267267
type: 'steps',
268268
steps: [
269+
{
270+
id: 'settingsSyncWeb',
271+
title: localize('gettingStarted.settingsSync.title', "Personalize your VS Code"),
272+
description: localize('gettingStarted.settingsSync.description.interpolated', "Keep your essential VS Code customizations backed up and updated across all your devices.\n{0}", Button(localize('enableSync', "Backup and Sync Settings"), 'command:workbench.userDataSync.actions.turnOn')),
273+
when: 'syncStatus != uninitialized',
274+
completionEvents: ['onEvent:sync-enabled'],
275+
media: {
276+
type: 'svg', altText: 'The "Turn on Sync" entry in the settings gear menu.', path: 'settingsSync.svg'
277+
},
278+
},
269279
{
270280
id: 'pickColorThemeWeb',
271281
title: localize('gettingStarted.pickColor.title', "Choose the look you want"),
@@ -276,16 +286,6 @@ export const walkthroughs: GettingStartedWalkthroughContent = [
276286
],
277287
media: { type: 'markdown', path: 'theme_picker', }
278288
},
279-
{
280-
id: 'settingsSyncWeb',
281-
title: localize('gettingStarted.settingsSync.title', "Sync to and from other devices"),
282-
description: localize('gettingStarted.settingsSync.description.interpolated', "Keep your essential VS Code customizations backed up and updated across all your devices.\n{0}", Button(localize('enableSync', "Enable Settings Sync"), 'command:workbench.userDataSync.actions.turnOn')),
283-
when: 'syncStatus != uninitialized',
284-
completionEvents: ['onEvent:sync-enabled'],
285-
media: {
286-
type: 'svg', altText: 'The "Turn on Sync" entry in the settings gear menu.', path: 'settingsSync.svg'
287-
},
288-
},
289289
{
290290
id: 'commandPaletteTaskWeb',
291291
title: localize('gettingStarted.commandPalette.title', "One shortcut to access everything"),

0 commit comments

Comments
 (0)