@codingame/monaco-vscode-walkthrough-service-override 7.1.1 → 8.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.
- package/package.json +2 -2
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.contribution.js +20 -20
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.js +27 -27
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedColors.js +7 -7
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedExtensionPoint.js +37 -37
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedIcons.js +2 -2
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedInput.js +1 -1
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService._contribution.js +3 -3
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService.js +1 -1
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/startupPage.js +2 -2
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent.js +117 -117
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/notebookProfile.js +3 -3
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/theme_picker.js +5 -5
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/editor/editorWalkThrough.js +3 -3
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThrough.contribution.js +2 -2
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/browser/walkThroughPart.js +2 -2
- package/vscode/src/vs/workbench/contrib/welcomeWalkthrough/common/walkThroughUtils.js +1 -1
package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent.js
CHANGED
|
@@ -5,13 +5,13 @@ import { Codicon } from 'vscode/vscode/vs/base/common/codicons';
|
|
|
5
5
|
import { registerIcon } from 'vscode/vscode/vs/platform/theme/common/iconRegistry';
|
|
6
6
|
import { NotebookSetting } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookCommon';
|
|
7
7
|
|
|
8
|
-
const setupIcon = registerIcon('getting-started-setup', Codicon.zap, ( localize(
|
|
9
|
-
const beginnerIcon = registerIcon('getting-started-beginner', Codicon.lightbulb, ( localize(
|
|
8
|
+
const setupIcon = registerIcon('getting-started-setup', Codicon.zap, ( localize(7381, "Icon used for the setup category of welcome page")));
|
|
9
|
+
const beginnerIcon = registerIcon('getting-started-beginner', Codicon.lightbulb, ( localize(7382, "Icon used for the beginner category of welcome page")));
|
|
10
10
|
const startEntries = [
|
|
11
11
|
{
|
|
12
12
|
id: 'welcome.showNewFileEntries',
|
|
13
|
-
title: ( localize(
|
|
14
|
-
description: ( localize(
|
|
13
|
+
title: ( localize(7383, "New File...")),
|
|
14
|
+
description: ( localize(7384, "Open a new untitled text file, notebook, or custom editor.")),
|
|
15
15
|
icon: Codicon.newFile,
|
|
16
16
|
content: {
|
|
17
17
|
type: 'startEntry',
|
|
@@ -20,8 +20,8 @@ const startEntries = [
|
|
|
20
20
|
},
|
|
21
21
|
{
|
|
22
22
|
id: 'topLevelOpenMac',
|
|
23
|
-
title: ( localize(
|
|
24
|
-
description: ( localize(
|
|
23
|
+
title: ( localize(7385, "Open...")),
|
|
24
|
+
description: ( localize(7386, "Open a file or folder to start working")),
|
|
25
25
|
icon: Codicon.folderOpened,
|
|
26
26
|
when: '!isWeb && isMac',
|
|
27
27
|
content: {
|
|
@@ -31,8 +31,8 @@ const startEntries = [
|
|
|
31
31
|
},
|
|
32
32
|
{
|
|
33
33
|
id: 'topLevelOpenFile',
|
|
34
|
-
title: ( localize(
|
|
35
|
-
description: ( localize(
|
|
34
|
+
title: ( localize(7387, "Open File...")),
|
|
35
|
+
description: ( localize(7388, "Open a file to start working")),
|
|
36
36
|
icon: Codicon.goToFile,
|
|
37
37
|
when: 'isWeb || !isMac',
|
|
38
38
|
content: {
|
|
@@ -42,8 +42,8 @@ const startEntries = [
|
|
|
42
42
|
},
|
|
43
43
|
{
|
|
44
44
|
id: 'topLevelOpenFolder',
|
|
45
|
-
title: ( localize(
|
|
46
|
-
description: ( localize(
|
|
45
|
+
title: ( localize(7389, "Open Folder...")),
|
|
46
|
+
description: ( localize(7390, "Open a folder to start working")),
|
|
47
47
|
icon: Codicon.folderOpened,
|
|
48
48
|
when: '!isWeb && !isMac',
|
|
49
49
|
content: {
|
|
@@ -53,8 +53,8 @@ const startEntries = [
|
|
|
53
53
|
},
|
|
54
54
|
{
|
|
55
55
|
id: 'topLevelOpenFolderWeb',
|
|
56
|
-
title: ( localize(
|
|
57
|
-
description: ( localize(
|
|
56
|
+
title: ( localize(7390, "Open Folder...")),
|
|
57
|
+
description: ( localize(7390, "Open a folder to start working")),
|
|
58
58
|
icon: Codicon.folderOpened,
|
|
59
59
|
when: '!openFolderWorkspaceSupport && workbenchState == \'workspace\'',
|
|
60
60
|
content: {
|
|
@@ -64,8 +64,8 @@ const startEntries = [
|
|
|
64
64
|
},
|
|
65
65
|
{
|
|
66
66
|
id: 'topLevelGitClone',
|
|
67
|
-
title: ( localize(
|
|
68
|
-
description: ( localize(
|
|
67
|
+
title: ( localize(7391, "Clone Git Repository...")),
|
|
68
|
+
description: ( localize(7392, "Clone a remote repository to a local folder")),
|
|
69
69
|
when: 'config.git.enabled && !git.missing',
|
|
70
70
|
icon: Codicon.sourceControl,
|
|
71
71
|
content: {
|
|
@@ -75,9 +75,9 @@ const startEntries = [
|
|
|
75
75
|
},
|
|
76
76
|
{
|
|
77
77
|
id: 'topLevelGitOpen',
|
|
78
|
-
title: ( localize(
|
|
78
|
+
title: ( localize(7393, "Open Repository...")),
|
|
79
79
|
description: ( localize(
|
|
80
|
-
|
|
80
|
+
7394,
|
|
81
81
|
"Connect to a remote repository or pull request to browse, search, edit, and commit"
|
|
82
82
|
)),
|
|
83
83
|
when: 'workspacePlatform == \'webworker\'',
|
|
@@ -89,8 +89,8 @@ const startEntries = [
|
|
|
89
89
|
},
|
|
90
90
|
{
|
|
91
91
|
id: 'topLevelShowWalkthroughs',
|
|
92
|
-
title: ( localize(
|
|
93
|
-
description: ( localize(
|
|
92
|
+
title: ( localize(7395, "Open a Walkthrough...")),
|
|
93
|
+
description: ( localize(7396, "View a walkthrough on the editor or an extension")),
|
|
94
94
|
icon: Codicon.checklist,
|
|
95
95
|
when: 'allWalkthroughsHidden',
|
|
96
96
|
content: {
|
|
@@ -100,8 +100,8 @@ const startEntries = [
|
|
|
100
100
|
},
|
|
101
101
|
{
|
|
102
102
|
id: 'topLevelRemoteOpen',
|
|
103
|
-
title: ( localize(
|
|
104
|
-
description: ( localize(
|
|
103
|
+
title: ( localize(7397, "Connect to...")),
|
|
104
|
+
description: ( localize(7398, "Connect to remote development workspaces.")),
|
|
105
105
|
when: '!isWeb',
|
|
106
106
|
icon: Codicon.remote,
|
|
107
107
|
content: {
|
|
@@ -111,8 +111,8 @@ const startEntries = [
|
|
|
111
111
|
},
|
|
112
112
|
{
|
|
113
113
|
id: 'topLevelOpenTunnel',
|
|
114
|
-
title: ( localize(
|
|
115
|
-
description: ( localize(
|
|
114
|
+
title: ( localize(7399, "Open Tunnel...")),
|
|
115
|
+
description: ( localize(7400, "Connect to a remote machine through a Tunnel")),
|
|
116
116
|
when: 'isWeb && showRemoteStartEntryInWeb',
|
|
117
117
|
icon: Codicon.remote,
|
|
118
118
|
content: {
|
|
@@ -125,8 +125,8 @@ const Button = (title, href) => `[${title}](${href})`;
|
|
|
125
125
|
const walkthroughs = [
|
|
126
126
|
{
|
|
127
127
|
id: 'Setup',
|
|
128
|
-
title: ( localize(
|
|
129
|
-
description: ( localize(
|
|
128
|
+
title: ( localize(7401, "Get Started with VS Code")),
|
|
129
|
+
description: ( localize(7402, "Customize your editor, learn the basics, and start coding")),
|
|
130
130
|
isFeatured: true,
|
|
131
131
|
icon: setupIcon,
|
|
132
132
|
when: '!isWeb',
|
|
@@ -136,11 +136,11 @@ const walkthroughs = [
|
|
|
136
136
|
steps: [
|
|
137
137
|
{
|
|
138
138
|
id: 'pickColorTheme',
|
|
139
|
-
title: ( localize(
|
|
139
|
+
title: ( localize(7403, "Choose your theme")),
|
|
140
140
|
description: ( localize(
|
|
141
|
-
|
|
141
|
+
7404,
|
|
142
142
|
"The right theme helps you focus on your code, is easy on your eyes, and is simply more fun to use.\n{0}",
|
|
143
|
-
Button(( localize(
|
|
143
|
+
Button(( localize(7405, "Browse Color Themes")), 'command:workbench.action.selectTheme')
|
|
144
144
|
)),
|
|
145
145
|
completionEvents: [
|
|
146
146
|
'onSettingChanged:workbench.colorTheme',
|
|
@@ -150,11 +150,11 @@ const walkthroughs = [
|
|
|
150
150
|
},
|
|
151
151
|
{
|
|
152
152
|
id: 'extensionsWeb',
|
|
153
|
-
title: ( localize(
|
|
153
|
+
title: ( localize(7406, "Code with extensions")),
|
|
154
154
|
description: ( localize(
|
|
155
|
-
|
|
155
|
+
7407,
|
|
156
156
|
"Extensions are VS Code's power-ups. A growing number are becoming available in the web.\n{0}",
|
|
157
|
-
Button(( localize(
|
|
157
|
+
Button(( localize(7408, "Browse Popular Web Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
|
|
158
158
|
)),
|
|
159
159
|
when: 'workspacePlatform == \'webworker\'',
|
|
160
160
|
media: {
|
|
@@ -163,11 +163,11 @@ const walkthroughs = [
|
|
|
163
163
|
},
|
|
164
164
|
{
|
|
165
165
|
id: 'findLanguageExtensions',
|
|
166
|
-
title: ( localize(
|
|
166
|
+
title: ( localize(7409, "Rich support for all your languages")),
|
|
167
167
|
description: ( localize(
|
|
168
|
-
|
|
168
|
+
7410,
|
|
169
169
|
"Code smarter with syntax highlighting, code completion, linting and debugging. While many languages are built-in, many more can be added as extensions.\n{0}",
|
|
170
|
-
Button(( localize(
|
|
170
|
+
Button(( localize(7411, "Browse Language Extensions")), 'command:workbench.extensions.action.showLanguageExtensions')
|
|
171
171
|
)),
|
|
172
172
|
when: 'workspacePlatform != \'webworker\'',
|
|
173
173
|
media: {
|
|
@@ -176,11 +176,11 @@ const walkthroughs = [
|
|
|
176
176
|
},
|
|
177
177
|
{
|
|
178
178
|
id: 'settings',
|
|
179
|
-
title: ( localize(
|
|
179
|
+
title: ( localize(7412, "Tune your settings")),
|
|
180
180
|
description: ( localize(
|
|
181
|
-
|
|
181
|
+
7413,
|
|
182
182
|
"Customize every aspect of VS Code and your extensions to your liking. Commonly used settings are listed first to get you started.\n{0}",
|
|
183
|
-
Button(( localize(
|
|
183
|
+
Button(( localize(7414, "Open Settings")), 'command:toSide:workbench.action.openSettings')
|
|
184
184
|
)),
|
|
185
185
|
media: {
|
|
186
186
|
type: 'svg', altText: 'VS Code Settings', path: 'settings.svg'
|
|
@@ -188,11 +188,11 @@ const walkthroughs = [
|
|
|
188
188
|
},
|
|
189
189
|
{
|
|
190
190
|
id: 'settingsSync',
|
|
191
|
-
title: ( localize(
|
|
191
|
+
title: ( localize(7415, "Sync settings across devices")),
|
|
192
192
|
description: ( localize(
|
|
193
|
-
|
|
193
|
+
7416,
|
|
194
194
|
"Keep your essential customizations backed up and updated across all your devices.\n{0}",
|
|
195
|
-
Button(( localize(
|
|
195
|
+
Button(( localize(7417, "Backup and Sync Settings")), 'command:workbench.userDataSync.actions.turnOn')
|
|
196
196
|
)),
|
|
197
197
|
when: 'syncStatus != uninitialized',
|
|
198
198
|
completionEvents: ['onEvent:sync-enabled'],
|
|
@@ -202,21 +202,21 @@ const walkthroughs = [
|
|
|
202
202
|
},
|
|
203
203
|
{
|
|
204
204
|
id: 'commandPaletteTask',
|
|
205
|
-
title: ( localize(
|
|
205
|
+
title: ( localize(7418, "Unlock productivity with the Command Palette ")),
|
|
206
206
|
description: ( localize(
|
|
207
|
-
|
|
207
|
+
7419,
|
|
208
208
|
"Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
|
|
209
|
-
Button(( localize(
|
|
209
|
+
Button(( localize(7420, "Open Command Palette")), 'command:workbench.action.showCommands')
|
|
210
210
|
)),
|
|
211
211
|
media: { type: 'svg', altText: 'Command Palette overlay for searching and executing commands.', path: 'commandPalette.svg' },
|
|
212
212
|
},
|
|
213
213
|
{
|
|
214
214
|
id: 'pickAFolderTask-Mac',
|
|
215
|
-
title: ( localize(
|
|
215
|
+
title: ( localize(7421, "Open up your code")),
|
|
216
216
|
description: ( localize(
|
|
217
|
-
|
|
217
|
+
7422,
|
|
218
218
|
"You're all set to start coding. Open a project folder to get your files into VS Code.\n{0}",
|
|
219
|
-
Button(( localize(
|
|
219
|
+
Button(( localize(7423, "Pick a Folder")), 'command:workbench.action.files.openFileFolder')
|
|
220
220
|
)),
|
|
221
221
|
when: 'isMac && workspaceFolderCount == 0',
|
|
222
222
|
media: {
|
|
@@ -225,11 +225,11 @@ const walkthroughs = [
|
|
|
225
225
|
},
|
|
226
226
|
{
|
|
227
227
|
id: 'pickAFolderTask-Other',
|
|
228
|
-
title: ( localize(
|
|
228
|
+
title: ( localize(7423, "Open up your code")),
|
|
229
229
|
description: ( localize(
|
|
230
|
-
|
|
230
|
+
7423,
|
|
231
231
|
"You're all set to start coding. Open a project folder to get your files into VS Code.\n{0}",
|
|
232
|
-
Button(( localize(
|
|
232
|
+
Button(( localize(7423, "Pick a Folder")), 'command:workbench.action.files.openFolder')
|
|
233
233
|
)),
|
|
234
234
|
when: '!isMac && workspaceFolderCount == 0',
|
|
235
235
|
media: {
|
|
@@ -238,11 +238,11 @@ const walkthroughs = [
|
|
|
238
238
|
},
|
|
239
239
|
{
|
|
240
240
|
id: 'quickOpen',
|
|
241
|
-
title: ( localize(
|
|
241
|
+
title: ( localize(7424, "Quickly navigate between your files")),
|
|
242
242
|
description: ( localize(
|
|
243
|
-
|
|
243
|
+
7425,
|
|
244
244
|
"Navigate between files in an instant with one keystroke. Tip: Open multiple files by pressing the right arrow key.\n{0}",
|
|
245
|
-
Button(( localize(
|
|
245
|
+
Button(( localize(7426, "Quick Open a File")), 'command:toSide:workbench.action.quickOpen')
|
|
246
246
|
)),
|
|
247
247
|
when: 'workspaceFolderCount != 0',
|
|
248
248
|
media: {
|
|
@@ -251,11 +251,11 @@ const walkthroughs = [
|
|
|
251
251
|
},
|
|
252
252
|
{
|
|
253
253
|
id: 'videoTutorial',
|
|
254
|
-
title: ( localize(
|
|
254
|
+
title: ( localize(7427, "Watch video tutorials")),
|
|
255
255
|
description: ( localize(
|
|
256
|
-
|
|
256
|
+
7428,
|
|
257
257
|
"Watch the first in a series of short & practical video tutorials for VS Code's key features.\n{0}",
|
|
258
|
-
Button(( localize(
|
|
258
|
+
Button(( localize(7429, "Watch Tutorial")), 'https://aka.ms/vscode-getting-started-video')
|
|
259
259
|
)),
|
|
260
260
|
media: { type: 'svg', altText: 'VS Code Settings', path: 'learn.svg' },
|
|
261
261
|
}
|
|
@@ -264,8 +264,8 @@ const walkthroughs = [
|
|
|
264
264
|
},
|
|
265
265
|
{
|
|
266
266
|
id: 'SetupWeb',
|
|
267
|
-
title: ( localize(
|
|
268
|
-
description: ( localize(
|
|
267
|
+
title: ( localize(7430, "Get Started with VS Code for the Web")),
|
|
268
|
+
description: ( localize(7431, "Customize your editor, learn the basics, and start coding")),
|
|
269
269
|
isFeatured: true,
|
|
270
270
|
icon: setupIcon,
|
|
271
271
|
when: 'isWeb',
|
|
@@ -275,11 +275,11 @@ const walkthroughs = [
|
|
|
275
275
|
steps: [
|
|
276
276
|
{
|
|
277
277
|
id: 'pickColorThemeWeb',
|
|
278
|
-
title: ( localize(
|
|
278
|
+
title: ( localize(7431, "Choose your theme")),
|
|
279
279
|
description: ( localize(
|
|
280
|
-
|
|
280
|
+
7431,
|
|
281
281
|
"The right theme helps you focus on your code, is easy on your eyes, and is simply more fun to use.\n{0}",
|
|
282
|
-
Button(( localize(
|
|
282
|
+
Button(( localize(7431, "Browse Color Themes")), 'command:workbench.action.selectTheme')
|
|
283
283
|
)),
|
|
284
284
|
completionEvents: [
|
|
285
285
|
'onSettingChanged:workbench.colorTheme',
|
|
@@ -289,11 +289,11 @@ const walkthroughs = [
|
|
|
289
289
|
},
|
|
290
290
|
{
|
|
291
291
|
id: 'menuBarWeb',
|
|
292
|
-
title: ( localize(
|
|
292
|
+
title: ( localize(7432, "Just the right amount of UI")),
|
|
293
293
|
description: ( localize(
|
|
294
|
-
|
|
294
|
+
7433,
|
|
295
295
|
"The full menu bar is available in the dropdown menu to make room for your code. Toggle its appearance for faster access. \n{0}",
|
|
296
|
-
Button(( localize(
|
|
296
|
+
Button(( localize(7434, "Toggle Menu Bar")), 'command:workbench.action.toggleMenuBar')
|
|
297
297
|
)),
|
|
298
298
|
when: 'isWeb',
|
|
299
299
|
media: {
|
|
@@ -302,11 +302,11 @@ const walkthroughs = [
|
|
|
302
302
|
},
|
|
303
303
|
{
|
|
304
304
|
id: 'extensionsWebWeb',
|
|
305
|
-
title: ( localize(
|
|
305
|
+
title: ( localize(7434, "Code with extensions")),
|
|
306
306
|
description: ( localize(
|
|
307
|
-
|
|
307
|
+
7434,
|
|
308
308
|
"Extensions are VS Code's power-ups. A growing number are becoming available in the web.\n{0}",
|
|
309
|
-
Button(( localize(
|
|
309
|
+
Button(( localize(7434, "Browse Popular Web Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
|
|
310
310
|
)),
|
|
311
311
|
when: 'workspacePlatform == \'webworker\'',
|
|
312
312
|
media: {
|
|
@@ -315,11 +315,11 @@ const walkthroughs = [
|
|
|
315
315
|
},
|
|
316
316
|
{
|
|
317
317
|
id: 'findLanguageExtensionsWeb',
|
|
318
|
-
title: ( localize(
|
|
318
|
+
title: ( localize(7434, "Rich support for all your languages")),
|
|
319
319
|
description: ( localize(
|
|
320
|
-
|
|
320
|
+
7434,
|
|
321
321
|
"Code smarter with syntax highlighting, code completion, linting and debugging. While many languages are built-in, many more can be added as extensions.\n{0}",
|
|
322
|
-
Button(( localize(
|
|
322
|
+
Button(( localize(7434, "Browse Language Extensions")), 'command:workbench.extensions.action.showLanguageExtensions')
|
|
323
323
|
)),
|
|
324
324
|
when: 'workspacePlatform != \'webworker\'',
|
|
325
325
|
media: {
|
|
@@ -328,11 +328,11 @@ const walkthroughs = [
|
|
|
328
328
|
},
|
|
329
329
|
{
|
|
330
330
|
id: 'settingsSyncWeb',
|
|
331
|
-
title: ( localize(
|
|
331
|
+
title: ( localize(7434, "Sync settings across devices")),
|
|
332
332
|
description: ( localize(
|
|
333
|
-
|
|
333
|
+
7434,
|
|
334
334
|
"Keep your essential customizations backed up and updated across all your devices.\n{0}",
|
|
335
|
-
Button(( localize(
|
|
335
|
+
Button(( localize(7434, "Backup and Sync Settings")), 'command:workbench.userDataSync.actions.turnOn')
|
|
336
336
|
)),
|
|
337
337
|
when: 'syncStatus != uninitialized',
|
|
338
338
|
completionEvents: ['onEvent:sync-enabled'],
|
|
@@ -342,22 +342,22 @@ const walkthroughs = [
|
|
|
342
342
|
},
|
|
343
343
|
{
|
|
344
344
|
id: 'commandPaletteTaskWeb',
|
|
345
|
-
title: ( localize(
|
|
345
|
+
title: ( localize(7434, "Unlock productivity with the Command Palette ")),
|
|
346
346
|
description: ( localize(
|
|
347
|
-
|
|
347
|
+
7434,
|
|
348
348
|
"Run commands without reaching for your mouse to accomplish any task in VS Code.\n{0}",
|
|
349
|
-
Button(( localize(
|
|
349
|
+
Button(( localize(7434, "Open Command Palette")), 'command:workbench.action.showCommands')
|
|
350
350
|
)),
|
|
351
351
|
media: { type: 'svg', altText: 'Command Palette overlay for searching and executing commands.', path: 'commandPalette.svg' },
|
|
352
352
|
},
|
|
353
353
|
{
|
|
354
354
|
id: 'pickAFolderTask-WebWeb',
|
|
355
|
-
title: ( localize(
|
|
355
|
+
title: ( localize(7434, "Open up your code")),
|
|
356
356
|
description: ( localize(
|
|
357
|
-
|
|
357
|
+
7435,
|
|
358
358
|
"You're all set to start coding. You can open a local project or a remote repository to get your files into VS Code.\n{0}\n{1}",
|
|
359
|
-
Button(( localize(
|
|
360
|
-
Button(( localize(
|
|
359
|
+
Button(( localize(7436, "Open Folder")), 'command:workbench.action.addRootFolder'),
|
|
360
|
+
Button(( localize(7437, "Open Repository")), 'command:remoteHub.openRepository')
|
|
361
361
|
)),
|
|
362
362
|
when: 'workspaceFolderCount == 0',
|
|
363
363
|
media: {
|
|
@@ -366,11 +366,11 @@ const walkthroughs = [
|
|
|
366
366
|
},
|
|
367
367
|
{
|
|
368
368
|
id: 'quickOpenWeb',
|
|
369
|
-
title: ( localize(
|
|
369
|
+
title: ( localize(7437, "Quickly navigate between your files")),
|
|
370
370
|
description: ( localize(
|
|
371
|
-
|
|
371
|
+
7437,
|
|
372
372
|
"Navigate between files in an instant with one keystroke. Tip: Open multiple files by pressing the right arrow key.\n{0}",
|
|
373
|
-
Button(( localize(
|
|
373
|
+
Button(( localize(7437, "Quick Open a File")), 'command:toSide:workbench.action.quickOpen')
|
|
374
374
|
)),
|
|
375
375
|
when: 'workspaceFolderCount != 0',
|
|
376
376
|
media: {
|
|
@@ -383,19 +383,19 @@ const walkthroughs = [
|
|
|
383
383
|
{
|
|
384
384
|
id: 'Beginner',
|
|
385
385
|
isFeatured: false,
|
|
386
|
-
title: ( localize(
|
|
386
|
+
title: ( localize(7438, "Learn the Fundamentals")),
|
|
387
387
|
icon: beginnerIcon,
|
|
388
|
-
description: ( localize(
|
|
388
|
+
description: ( localize(7439, "Get an overview of the most essential features")),
|
|
389
389
|
content: {
|
|
390
390
|
type: 'steps',
|
|
391
391
|
steps: [
|
|
392
392
|
{
|
|
393
393
|
id: 'extensions',
|
|
394
|
-
title: ( localize(
|
|
394
|
+
title: ( localize(7439, "Code with extensions")),
|
|
395
395
|
description: ( localize(
|
|
396
|
-
|
|
396
|
+
7440,
|
|
397
397
|
"Extensions are VS Code's power-ups. They range from handy productivity hacks, expanding out-of-the-box features, to adding completely new capabilities.\n{0}",
|
|
398
|
-
Button(( localize(
|
|
398
|
+
Button(( localize(7441, "Browse Popular Extensions")), 'command:workbench.extensions.action.showPopularExtensions')
|
|
399
399
|
)),
|
|
400
400
|
when: 'workspacePlatform != \'webworker\'',
|
|
401
401
|
media: {
|
|
@@ -404,11 +404,11 @@ const walkthroughs = [
|
|
|
404
404
|
},
|
|
405
405
|
{
|
|
406
406
|
id: 'terminal',
|
|
407
|
-
title: ( localize(
|
|
407
|
+
title: ( localize(7442, "Built-in terminal")),
|
|
408
408
|
description: ( localize(
|
|
409
|
-
|
|
409
|
+
7443,
|
|
410
410
|
"Quickly run shell commands and monitor build output, right next to your code.\n{0}",
|
|
411
|
-
Button(( localize(
|
|
411
|
+
Button(( localize(7444, "Open Terminal")), 'command:workbench.action.terminal.toggleTerminal')
|
|
412
412
|
)),
|
|
413
413
|
when: 'workspacePlatform != \'webworker\' && remoteName != codespaces && !terminalIsOpen',
|
|
414
414
|
media: {
|
|
@@ -417,11 +417,11 @@ const walkthroughs = [
|
|
|
417
417
|
},
|
|
418
418
|
{
|
|
419
419
|
id: 'debugging',
|
|
420
|
-
title: ( localize(
|
|
420
|
+
title: ( localize(7445, "Watch your code in action")),
|
|
421
421
|
description: ( localize(
|
|
422
|
-
|
|
422
|
+
7446,
|
|
423
423
|
"Accelerate your edit, build, test, and debug loop by setting up a launch configuration.\n{0}",
|
|
424
|
-
Button(( localize(
|
|
424
|
+
Button(( localize(7447, "Run your Project")), 'command:workbench.action.debug.selectandstart')
|
|
425
425
|
)),
|
|
426
426
|
when: 'workspacePlatform != \'webworker\' && workspaceFolderCount != 0',
|
|
427
427
|
media: {
|
|
@@ -430,11 +430,11 @@ const walkthroughs = [
|
|
|
430
430
|
},
|
|
431
431
|
{
|
|
432
432
|
id: 'scmClone',
|
|
433
|
-
title: ( localize(
|
|
433
|
+
title: ( localize(7448, "Track your code with Git")),
|
|
434
434
|
description: ( localize(
|
|
435
|
-
|
|
435
|
+
7449,
|
|
436
436
|
"Set up the built-in version control for your project to track your changes and collaborate with others.\n{0}",
|
|
437
|
-
Button(( localize(
|
|
437
|
+
Button(( localize(7450, "Clone Repository")), 'command:git.clone')
|
|
438
438
|
)),
|
|
439
439
|
when: 'config.git.enabled && !git.missing && workspaceFolderCount == 0',
|
|
440
440
|
media: {
|
|
@@ -443,11 +443,11 @@ const walkthroughs = [
|
|
|
443
443
|
},
|
|
444
444
|
{
|
|
445
445
|
id: 'scmSetup',
|
|
446
|
-
title: ( localize(
|
|
446
|
+
title: ( localize(7450, "Track your code with Git")),
|
|
447
447
|
description: ( localize(
|
|
448
|
-
|
|
448
|
+
7451,
|
|
449
449
|
"Set up the built-in version control for your project to track your changes and collaborate with others.\n{0}",
|
|
450
|
-
Button(( localize(
|
|
450
|
+
Button(( localize(7452, "Initialize Git Repository")), 'command:git.init')
|
|
451
451
|
)),
|
|
452
452
|
when: 'config.git.enabled && !git.missing && workspaceFolderCount != 0 && gitOpenRepositoryCount == 0',
|
|
453
453
|
media: {
|
|
@@ -456,11 +456,11 @@ const walkthroughs = [
|
|
|
456
456
|
},
|
|
457
457
|
{
|
|
458
458
|
id: 'scm',
|
|
459
|
-
title: ( localize(
|
|
459
|
+
title: ( localize(7452, "Track your code with Git")),
|
|
460
460
|
description: ( localize(
|
|
461
|
-
|
|
461
|
+
7453,
|
|
462
462
|
"No more looking up Git commands! Git and GitHub workflows are seamlessly integrated.\n{0}",
|
|
463
|
-
Button(( localize(
|
|
463
|
+
Button(( localize(7454, "Open Source Control")), 'command:workbench.view.scm')
|
|
464
464
|
)),
|
|
465
465
|
when: 'config.git.enabled && !git.missing && workspaceFolderCount != 0 && gitOpenRepositoryCount != 0 && activeViewlet != \'workbench.view.scm\'',
|
|
466
466
|
media: {
|
|
@@ -469,11 +469,11 @@ const walkthroughs = [
|
|
|
469
469
|
},
|
|
470
470
|
{
|
|
471
471
|
id: 'installGit',
|
|
472
|
-
title: ( localize(
|
|
472
|
+
title: ( localize(7455, "Install Git")),
|
|
473
473
|
description: ( localize(
|
|
474
|
-
|
|
474
|
+
7456,
|
|
475
475
|
"Install Git to track changes in your projects.\n{0}\n{1}Reload window{2} after installation to complete Git setup.",
|
|
476
|
-
Button(( localize(
|
|
476
|
+
Button(( localize(7457, "Install Git")), 'https://aka.ms/vscode-install-git'),
|
|
477
477
|
'[',
|
|
478
478
|
'](command:workbench.action.reloadWindow)'
|
|
479
479
|
)),
|
|
@@ -487,12 +487,12 @@ const walkthroughs = [
|
|
|
487
487
|
},
|
|
488
488
|
{
|
|
489
489
|
id: 'tasks',
|
|
490
|
-
title: ( localize(
|
|
490
|
+
title: ( localize(7458, "Automate your project tasks")),
|
|
491
491
|
when: 'workspaceFolderCount != 0 && workspacePlatform != \'webworker\'',
|
|
492
492
|
description: ( localize(
|
|
493
|
-
|
|
493
|
+
7459,
|
|
494
494
|
"Create tasks for your common workflows and enjoy the integrated experience of running scripts and automatically checking results.\n{0}",
|
|
495
|
-
Button(( localize(
|
|
495
|
+
Button(( localize(7460, "Run Auto-detected Tasks")), 'command:workbench.action.tasks.runTask')
|
|
496
496
|
)),
|
|
497
497
|
media: {
|
|
498
498
|
type: 'svg', altText: 'Task runner.', path: 'runTask.svg',
|
|
@@ -500,11 +500,11 @@ const walkthroughs = [
|
|
|
500
500
|
},
|
|
501
501
|
{
|
|
502
502
|
id: 'shortcuts',
|
|
503
|
-
title: ( localize(
|
|
503
|
+
title: ( localize(7461, "Customize your shortcuts")),
|
|
504
504
|
description: ( localize(
|
|
505
|
-
|
|
505
|
+
7462,
|
|
506
506
|
"Once you have discovered your favorite commands, create custom keyboard shortcuts for instant access.\n{0}",
|
|
507
|
-
Button(( localize(
|
|
507
|
+
Button(( localize(7463, "Keyboard Shortcuts")), 'command:toSide:workbench.action.openGlobalKeybindings')
|
|
508
508
|
)),
|
|
509
509
|
media: {
|
|
510
510
|
type: 'svg', altText: 'Interactive shortcuts.', path: 'shortcuts.svg',
|
|
@@ -512,12 +512,12 @@ const walkthroughs = [
|
|
|
512
512
|
},
|
|
513
513
|
{
|
|
514
514
|
id: 'workspaceTrust',
|
|
515
|
-
title: ( localize(
|
|
515
|
+
title: ( localize(7464, "Safely browse and edit code")),
|
|
516
516
|
description: ( localize(
|
|
517
|
-
|
|
517
|
+
7465,
|
|
518
518
|
"{0} lets you decide whether your project folders should **allow or restrict** automatic code execution __(required for extensions, debugging, etc)__.\nOpening a file/folder will prompt to grant trust. You can always {1} later.",
|
|
519
|
-
Button(( localize(
|
|
520
|
-
Button(( localize(
|
|
519
|
+
Button(( localize(7466, "Workspace Trust")), 'https://github.com/microsoft/vscode-docs/blob/workspaceTrust/docs/editor/workspace-trust.md'),
|
|
520
|
+
Button(( localize(7467, "enable trust")), 'command:toSide:workbench.action.manageTrustedDomain')
|
|
521
521
|
)),
|
|
522
522
|
when: 'workspacePlatform != \'webworker\' && !isWorkspaceTrusted && workspaceFolderCount == 0',
|
|
523
523
|
media: {
|
|
@@ -529,7 +529,7 @@ const walkthroughs = [
|
|
|
529
529
|
},
|
|
530
530
|
{
|
|
531
531
|
id: 'notebooks',
|
|
532
|
-
title: ( localize(
|
|
532
|
+
title: ( localize(7468, "Customize Notebooks")),
|
|
533
533
|
description: '',
|
|
534
534
|
icon: setupIcon,
|
|
535
535
|
isFeatured: false,
|
|
@@ -540,8 +540,8 @@ const walkthroughs = [
|
|
|
540
540
|
{
|
|
541
541
|
completionEvents: ['onCommand:notebook.setProfile'],
|
|
542
542
|
id: 'notebookProfile',
|
|
543
|
-
title: ( localize(
|
|
544
|
-
description: ( localize(
|
|
543
|
+
title: ( localize(7469, "Select the layout for your notebooks")),
|
|
544
|
+
description: ( localize(7470, "Get notebooks to feel just the way you prefer")),
|
|
545
545
|
when: 'userHasOpenedNotebook',
|
|
546
546
|
media: {
|
|
547
547
|
type: 'markdown', path: 'notebookProfile'
|
package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/media/notebookProfile.js
CHANGED
|
@@ -8,15 +8,15 @@ var notebookProfile = () => `
|
|
|
8
8
|
<checklist>
|
|
9
9
|
<checkbox on-checked="command:notebook.setProfile?${profileArg('default')}" checked-on="config.notebook.cellFocusIndicator == 'border' && config.notebook.insertToolbarLocation == 'both' && config.notebook.globalToolbar == false && config.notebook.compactView == true && config.notebook.showCellStatusBar == 'visible'">
|
|
10
10
|
<img width="${imageSize}" src="./notebookThemes/default.png"/>
|
|
11
|
-
${escape(( localize(
|
|
11
|
+
${escape(( localize(2770, "Default")))}
|
|
12
12
|
</checkbox>
|
|
13
13
|
<checkbox on-checked="command:notebook.setProfile?${profileArg('jupyter')}" checked-on="config.notebook.cellFocusIndicator == 'gutter' && config.notebook.insertToolbarLocation == 'notebookToolbar' && config.notebook.globalToolbar == true && config.notebook.compactView == true && config.notebook.showCellStatusBar == 'visible'">
|
|
14
14
|
<img width="${imageSize}" src="./notebookThemes/jupyter.png"/>
|
|
15
|
-
${escape(( localize(
|
|
15
|
+
${escape(( localize(2771, "Jupyter")))}
|
|
16
16
|
</checkbox>
|
|
17
17
|
<checkbox on-checked="command:notebook.setProfile?${profileArg('colab')}" checked-on="config.notebook.cellFocusIndicator == 'border' && config.notebook.insertToolbarLocation == 'betweenCells' && config.notebook.globalToolbar == false && config.notebook.compactView == false && config.notebook.showCellStatusBar == 'hidden'">
|
|
18
18
|
<img width="${imageSize}" src="./notebookThemes/colab.png"/>
|
|
19
|
-
${escape(( localize(
|
|
19
|
+
${escape(( localize(2772, "Colab")))}
|
|
20
20
|
</checkbox>
|
|
21
21
|
</checklist>
|
|
22
22
|
</vertically-centered>
|
|
@@ -7,26 +7,26 @@ var theme_picker = () => `
|
|
|
7
7
|
<div class="theme-picker-row">
|
|
8
8
|
<checkbox when-checked="setTheme:${ThemeSettingDefaults.COLOR_THEME_DARK}" checked-on="config.workbench.colorTheme == '${ThemeSettingDefaults.COLOR_THEME_DARK}'">
|
|
9
9
|
<img width="200" src="./dark.png"/>
|
|
10
|
-
${escape(( localize(
|
|
10
|
+
${escape(( localize(2765, "Dark Modern")))}
|
|
11
11
|
</checkbox>
|
|
12
12
|
<checkbox when-checked="setTheme:${ThemeSettingDefaults.COLOR_THEME_LIGHT}" checked-on="config.workbench.colorTheme == '${ThemeSettingDefaults.COLOR_THEME_LIGHT}'">
|
|
13
13
|
<img width="200" src="./light.png"/>
|
|
14
|
-
${escape(( localize(
|
|
14
|
+
${escape(( localize(2766, "Light Modern")))}
|
|
15
15
|
</checkbox>
|
|
16
16
|
</div>
|
|
17
17
|
<div class="theme-picker-row">
|
|
18
18
|
<checkbox when-checked="setTheme:${ThemeSettingDefaults.COLOR_THEME_HC_DARK}" checked-on="config.workbench.colorTheme == '${ThemeSettingDefaults.COLOR_THEME_HC_DARK}'">
|
|
19
19
|
<img width="200" src="./dark-hc.png"/>
|
|
20
|
-
${escape(( localize(
|
|
20
|
+
${escape(( localize(2767, "Dark High Contrast")))}
|
|
21
21
|
</checkbox>
|
|
22
22
|
<checkbox when-checked="setTheme:${ThemeSettingDefaults.COLOR_THEME_HC_LIGHT}" checked-on="config.workbench.colorTheme == '${ThemeSettingDefaults.COLOR_THEME_HC_LIGHT}'">
|
|
23
23
|
<img width="200" src="./light-hc.png"/>
|
|
24
|
-
${escape(( localize(
|
|
24
|
+
${escape(( localize(2768, "Light High Contrast")))}
|
|
25
25
|
</checkbox>
|
|
26
26
|
</div>
|
|
27
27
|
</checklist>
|
|
28
28
|
<checkbox class="theme-picker-link" when-checked="command:workbench.action.selectTheme" checked-on="false">
|
|
29
|
-
${escape(( localize(
|
|
29
|
+
${escape(( localize(2769, "See More Themes...")))}
|
|
30
30
|
</checkbox>
|
|
31
31
|
`;
|
|
32
32
|
|