|
83 | 83 | "walkthroughs": [
|
84 | 84 | {
|
85 | 85 | "id": "pythonWelcome",
|
86 |
| - "title": "Get Started with Python Development", |
87 |
| - "description": "Your first steps to set up a Python project with all the powerful tools and features that the Python extension has to offer!", |
| 86 | + "title": "%walkthrough.pythonWelcome.title%", |
| 87 | + "description": "%walkthrough.pythonWelcome.description%", |
88 | 88 | "when": "workspacePlatform != webworker",
|
89 | 89 | "steps": [
|
90 | 90 | {
|
91 | 91 | "id": "python.createPythonFile",
|
92 |
| - "title": "Create a Python file", |
93 |
| - "description": "[Open](command:toSide:workbench.action.files.openFile) or [create](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22python%22%7D) a Python file - make sure to save it as \".py\".\n[Create Python File](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22python%22%7D)", |
| 92 | + "title": "%walkthrough.step.python.createPythonFile.title%", |
| 93 | + "description": "%walkthrough.step.python.createPythonFile.description%", |
94 | 94 | "media": {
|
95 | 95 | "svg": "resources/walkthrough/open-folder.svg",
|
96 |
| - "altText": "Open a Python file or a folder with a Python project." |
| 96 | + "altText": "%walkthrough.step.python.createPythonFile.altText%" |
97 | 97 | },
|
98 | 98 | "when": ""
|
99 | 99 | },
|
100 | 100 | {
|
101 | 101 | "id": "python.installPythonWin8",
|
102 |
| - "title": "Install Python", |
103 |
| - "description": "The Python Extension requires Python to be installed. Install Python [from python.org](https://www.python.org/downloads).\n\n[Install Python](https://www.python.org/downloads)\n", |
| 102 | + "title": "%walkthrough.step.python.installPythonWin8.title%", |
| 103 | + "description": "%walkthrough.step.python.installPythonWin8.description%", |
104 | 104 | "media": {
|
105 | 105 | "markdown": "resources/walkthrough/install-python-windows-8.md"
|
106 | 106 | },
|
107 | 107 | "when": "workspacePlatform == windows && showInstallPythonTile"
|
108 | 108 | },
|
109 | 109 | {
|
110 | 110 | "id": "python.installPythonMac",
|
111 |
| - "title": "Install Python", |
112 |
| - "description": "The Python Extension requires Python to be installed. Install Python 3 through the terminal.\n[Install Python via Brew](command:python.installPythonOnMac)\n", |
| 111 | + "title": "%walkthrough.step.python.installPythonMac.title%", |
| 112 | + "description": "%walkthrough.step.python.installPythonMac.description%", |
113 | 113 | "media": {
|
114 | 114 | "markdown": "resources/walkthrough/install-python-macos.md"
|
115 | 115 | },
|
|
118 | 118 | },
|
119 | 119 | {
|
120 | 120 | "id": "python.installPythonLinux",
|
121 |
| - "title": "Install Python", |
122 |
| - "description": "The Python Extension requires Python to be installed. Install Python 3 through the terminal.\n[Install Python via terminal](command:python.installPythonOnLinux)\n", |
| 121 | + "title": "%walkthrough.step.python.installPythonLinux.title%", |
| 122 | + "description": "%walkthrough.step.python.installPythonLinux.description%", |
123 | 123 | "media": {
|
124 | 124 | "markdown": "resources/walkthrough/install-python-linux.md"
|
125 | 125 | },
|
|
128 | 128 | },
|
129 | 129 | {
|
130 | 130 | "id": "python.selectInterpreter",
|
131 |
| - "title": "Select a Python Interpreter", |
132 |
| - "description": "Choose which Python interpreter/environment you want to use for your Python project.\n[Select Python Interpreter](command:python.setInterpreter)\n**Tip**: Run the ``Python: Select Interpreter`` command in the [Command Palette](command:workbench.action.showCommands).", |
| 131 | + "title": "%walkthrough.step.python.selectInterpreter.title%", |
| 132 | + "description": "%walkthrough.step.python.selectInterpreter.description%", |
133 | 133 | "media": {
|
134 | 134 | "svg": "resources/walkthrough/python-interpreter.svg",
|
135 |
| - "altText": "Selecting a python interpreter from the status bar" |
| 135 | + "altText": "%walkthrough.step.python.selectInterpreter.altText%" |
136 | 136 | },
|
137 | 137 | "when": "workspaceFolderCount == 0"
|
138 | 138 | },
|
139 | 139 | {
|
140 | 140 | "id": "python.createEnvironment",
|
141 |
| - "title": "Create a Python Environment ", |
142 |
| - "description": "Create an environment for your Python project.\n[Create Environment](command:python.createEnvironment)\n**Tip**: Run the ``Python: Create Environment`` command in the [Command Palette](command:workbench.action.showCommands).\n 🔍 Check out our [docs](https://aka.ms/pythonenvs) to learn more.", |
| 141 | + "title": "%walkthrough.step.python.createEnvironment.title%", |
| 142 | + "description": "%walkthrough.step.python.createEnvironment.description%", |
143 | 143 | "media": {
|
144 | 144 | "svg": "resources/walkthrough/create-environment.svg",
|
145 |
| - "altText": "Creating a Python environment from the Command Palette" |
| 145 | + "altText": "%walkthrough.step.python.createEnvironment.altText%" |
146 | 146 | },
|
147 | 147 | "when": "workspaceFolderCount > 0"
|
148 | 148 | },
|
149 | 149 | {
|
150 | 150 | "id": "python.runAndDebug",
|
151 |
| - "title": "Run and debug your Python file", |
152 |
| - "description": "Open your Python file and click on the play button on the top right of the editor, or press F5 when on the file and select \"Python File\" to run with the debugger. \n \n[Learn more](https://code.visualstudio.com/docs/python/python-tutorial#_run-hello-world)", |
| 151 | + "title": "%walkthrough.step.python.runAndDebug.title%", |
| 152 | + "description": "%walkthrough.step.python.runAndDebug.description%", |
153 | 153 | "media": {
|
154 | 154 | "svg": "resources/walkthrough/rundebug2.svg",
|
155 |
| - "altText": "How to run and debug in VS Code with F5 or the play button on the top right." |
| 155 | + "altText": "%walkthrough.step.python.runAndDebug.altText%" |
156 | 156 | },
|
157 | 157 | "when": ""
|
158 | 158 | },
|
159 | 159 | {
|
160 | 160 | "id": "python.learnMoreWithDS",
|
161 |
| - "title": "Explore more resources", |
162 |
| - "description": "🎨 Explore all the features the Python extension has to offer by looking for \"Python\" in the [Command Palette](command:workbench.action.showCommands). \n 📈 Learn more about getting started with [data science](command:workbench.action.openWalkthrough?%7B%22category%22%3A%22ms-python.python%23pythonDataScienceWelcome%22%2C%22step%22%3A%22ms-python.python%23python.createNewNotebook%22%7D) in Python. \n ✨ Take a look at our [Release Notes](https://aka.ms/AA8dxtb) to learn more about the latest features. \n \n[Learn More](https://aka.ms/AA8dqti)", |
| 161 | + "title": "%walkthrough.step.python.learnMoreWithDS.title%", |
| 162 | + "description": "%walkthrough.step.python.learnMoreWithDS.description%", |
163 | 163 | "media": {
|
164 |
| - "altText": "Image representing our documentation page and mailing list resources.", |
| 164 | + "altText": "%walkthrough.step.python.learnMoreWithDS.altText%", |
165 | 165 | "svg": "resources/walkthrough/learnmore.svg"
|
166 | 166 | },
|
167 | 167 | "when": ""
|
|
170 | 170 | },
|
171 | 171 | {
|
172 | 172 | "id": "pythonDataScienceWelcome",
|
173 |
| - "title": "Get Started with Python for Data Science", |
174 |
| - "description": "Your first steps to getting started with a Data Science project with Python!", |
| 173 | + "title": "%walkthrough.pythonDataScienceWelcome.title%", |
| 174 | + "description": "%walkthrough.pythonDataScienceWelcome.description%", |
175 | 175 | "when": "false",
|
176 | 176 | "steps": [
|
177 | 177 | {
|
178 | 178 | "id": "python.installJupyterExt",
|
179 |
| - "title": "Install Jupyter extension", |
180 |
| - "description": "If you haven't already, install the [Jupyter extension](command:workbench.extensions.search?\"ms-toolsai.jupyter\") to take full advantage of notebooks experiences in VS Code!\n \n[Search Jupyter extension](command:workbench.extensions.search?\"ms-toolsai.jupyter\")", |
| 179 | + "title": "%walkthrough.step.python.installJupyterExt.title%", |
| 180 | + "description": "%walkthrough.step.python.installJupyterExt.description%", |
181 | 181 | "media": {
|
182 | 182 | "svg": "resources/walkthrough/data-science.svg",
|
183 |
| - "altText": "Creating a new Jupyter notebook" |
| 183 | + "altText": "%walkthrough.step.python.installJupyterExt.altText%" |
184 | 184 | }
|
185 | 185 | },
|
186 | 186 | {
|
187 | 187 | "id": "python.createNewNotebook",
|
188 |
| - "title": "Create or open a Jupyter Notebook", |
189 |
| - "description": "Right click in the file explorer and create a new file with an .ipynb extension. Or, open the [Command Palette](command:workbench.action.showCommands) and run the command \n``Jupyter: Create New Blank Notebook``.\n[Create new Jupyter Notebook](command:toSide:jupyter.createnewnotebook)\n If you have an existing project, you can also [open a folder](command:workbench.action.files.openFolder) and/or clone a project from GitHub: [clone a Git repository](command:git.clone).", |
| 188 | + "title": "%walkthrough.step.python.createNewNotebook.title%", |
| 189 | + "description": "%walkthrough.step.python.createNewNotebook.description%", |
190 | 190 | "media": {
|
191 | 191 | "svg": "resources/walkthrough/create-notebook.svg",
|
192 |
| - "altText": "Creating a new Jupyter notebook" |
| 192 | + "altText": "%walkthrough.step.python.createNewNotebook.altText%" |
193 | 193 | },
|
194 | 194 | "completionEvents": [
|
195 | 195 | "onCommand:jupyter.createnewnotebook",
|
|
199 | 199 | },
|
200 | 200 | {
|
201 | 201 | "id": "python.openInteractiveWindow",
|
202 |
| - "title": "Open the Python Interactive Window", |
203 |
| - "description": "The Python Interactive Window is a Python shell where you can execute and view the results of your Python code. You can create cells on a Python file by typing ``#%%``.\n \nTo open the interactive window anytime, open the [Command Palette](command:workbench.action.showCommands) and run the command \n``Jupyter: Create Interactive Window``.\n[Open Interactive Window](command:jupyter.createnewinteractive)", |
| 202 | + "title": "%walkthrough.step.python.openInteractiveWindow.title%", |
| 203 | + "description": "%walkthrough.step.python.openInteractiveWindow.description%", |
204 | 204 | "media": {
|
205 | 205 | "svg": "resources/walkthrough/interactive-window.svg",
|
206 |
| - "altText": "Opening python interactive window" |
| 206 | + "altText": "%walkthrough.step.python.openInteractiveWindow.altText%" |
207 | 207 | },
|
208 | 208 | "completionEvents": [
|
209 | 209 | "onCommand:jupyter.createnewinteractive"
|
210 | 210 | ]
|
211 | 211 | },
|
212 | 212 | {
|
213 | 213 | "id": "python.dataScienceLearnMore",
|
214 |
| - "title": "Find out more!", |
215 |
| - "description": "📒 Take a look into the [Jupyter extension](command:workbench.extensions.search?\"ms-toolsai.jupyter\") features, by looking for \"Jupyter\" in the [Command Palette](command:workbench.action.showCommands). \n 🏃🏻 Find out more features in our [Tutorials](https://aka.ms/AAdjzpd). \n[Learn more](https://aka.ms/AAdar6q)", |
| 214 | + "title": "%walkthrough.step.python.dataScienceLearnMore.title%", |
| 215 | + "description": "%walkthrough.step.python.dataScienceLearnMore.description%", |
216 | 216 | "media": {
|
217 | 217 | "svg": "resources/walkthrough/learnmore.svg",
|
218 |
| - "altText": "Image representing our documentation page and mailing list resources." |
| 218 | + "altText": "%walkthrough.step.python.dataScienceLearnMore.altText%" |
219 | 219 | }
|
220 | 220 | }
|
221 | 221 | ]
|
|
0 commit comments