forked from microsoft/vscode-python
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.nls.json
514 lines (514 loc) · 46 KB
/
package.nls.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
{
"python.command.python.sortImports.title": "Sort Imports",
"python.command.python.startREPL.title": "Start REPL",
"python.command.python.createTerminal.title": "Create Terminal",
"python.command.python.buildWorkspaceSymbols.title": "Build Workspace Symbols",
"python.command.python.runtests.title": "Run All Tests",
"python.command.python.debugtests.title": "Debug All Tests",
"python.command.python.execInTerminal.title": "Run Python File in Terminal",
"python.command.python.setInterpreter.title": "Select Interpreter",
"python.command.python.switchOffInsidersChannel.title": "Switch to Default Channel",
"python.command.python.switchToDailyChannel.title": "Switch to Insiders Daily Channel",
"python.command.python.switchToWeeklyChannel.title": "Switch to Insiders Weekly Channel",
"python.command.python.clearWorkspaceInterpreter.title": "Clear Workspace Interpreter Setting",
"python.command.python.resetInterpreterSecurityStorage.title": "Reset Stored Info for Untrusted Interpreters",
"python.command.python.refactorExtractVariable.title": "Extract Variable",
"python.command.python.refactorExtractMethod.title": "Extract Method",
"python.command.python.viewOutput.title": "Show Output",
"python.command.python.viewTestOutput.title": "Show Test Output",
"python.command.python.datascience.viewJupyterOutput.title": "Show Jupyter Output",
"python.command.python.viewLanguageServerOutput.title": "Show Language Server Output",
"python.command.python.selectAndRunTestMethod.title": "Run Test Method ...",
"python.command.python.selectAndDebugTestMethod.title": "Debug Test Method ...",
"python.command.python.selectAndRunTestFile.title": "Run Test File ...",
"python.command.python.runCurrentTestFile.title": "Run Current Test File",
"python.command.python.runFailedTests.title": "Run Failed Tests",
"python.command.python.discoverTests.title": "Discover Tests",
"python.command.python.discoveringTests.title": "Discovering...",
"python.command.python.stopTests.title": "Stop",
"python.command.python.configureTests.title": "Configure Tests",
"python.command.python.execSelectionInTerminal.title": "Run Selection/Line in Python Terminal",
"python.command.python.execSelectionInDjangoShell.title": "Run Selection/Line in Django Shell",
"python.command.python.goToPythonObject.title": "Go to Python Object",
"python.command.python.setLinter.title": "Select Linter",
"python.command.python.enableLinting.title": "Enable Linting",
"python.command.python.runLinting.title": "Run Linting",
"python.command.python.datascience.runFileInteractive.title": "Run Current File in Python Interactive Window",
"python.command.python.datascience.debugFileInteractive.title": "Debug Current File in Python Interactive Window",
"python.command.python.datascience.runallcells.title": "Run All Cells",
"python.command.python.datascience.notebookeditor.runallcells.title": "Run All Notebook Cells",
"python.command.python.datascience.runallcellsabove.title": "Run Above",
"python.command.python.datascience.runcellandallbelow.title": "Run Below",
"python.command.python.datascience.runallcellsabove.palette.title": "Run Cells Above Current Cell",
"python.command.python.datascience.runcurrentcellandallbelow.palette.title": "Run Current Cell and Below",
"python.command.python.datascience.debugcurrentcell.palette.title": "Debug Current Cell",
"python.command.python.datascience.debugcell.title": "Debug Cell",
"python.command.python.datascience.debugstepover.title": "Step Over",
"python.command.python.datascience.debugcontinue.title": "Continue",
"python.command.python.datascience.debugstop.title": "Stop",
"python.command.python.datascience.runtoline.title": "Run To Line in Python Interactive Window",
"python.command.python.datascience.runfromline.title": "Run From Line in Python Interactive Window",
"python.command.python.datascience.runcurrentcell.title": "Run Current Cell",
"python.command.python.datascience.runcurrentcelladvance.title": "Run Current Cell And Advance",
"python.command.python.datascience.execSelectionInteractive.title": "Run Selection/Line in Python Interactive Window",
"python.command.python.datascience.runcell.title": "Run Cell",
"python.command.python.datascience.showhistorypane.title": "Show Python Interactive Window",
"python.command.python.datascience.selectjupyteruri.title": "Specify local or remote Jupyter server for connections",
"python.command.python.datascience.selectjupytercommandline.title": "Specify Jupyter command line arguments",
"python.command.python.datascience.importnotebook.title": "Import Jupyter Notebook",
"python.command.python.datascience.opennotebook.title": "Open in Notebook Editor",
"python.command.python.datascience.importnotebookfile.title": "Convert to Python Script",
"python.command.python.enableSourceMapSupport.title": "Enable Source Map Support For Extension Debugging",
"python.command.python.datascience.exportoutputasnotebook.title": "Export Python Interactive Window as Jupyter Notebook",
"python.command.python.datascience.exportfileasnotebook.title": "Export Current Python File as Jupyter Notebook",
"python.command.python.datascience.exportfileandoutputasnotebook.title": "Export Current Python File and Output as Jupyter Notebook",
"python.command.python.datascience.undocells.title": "Undo Last Python Interactive Action",
"python.command.python.datascience.redocells.title": "Redo Last Python Interactive Action",
"python.command.python.datascience.removeallcells.title": "Delete All Python Interactive Cells",
"python.command.python.datascience.notebookeditor.removeallcells.title": "Delete All Notebook Editor Cells",
"python.command.python.datascience.notebookeditor.runselectedcell.title": "Run Selected Notebook Cell",
"python.command.python.datascience.notebookeditor.addcellbelow.title": "Add Empty Cell to Notebook File",
"python.command.python.datascience.interruptkernel.title": "Interrupt IPython Kernel",
"python.command.python.datascience.restartkernel.title": "Restart IPython Kernel",
"python.command.python.datascience.expandallcells.title": "Expand All Python Interactive Cells",
"python.command.python.datascience.collapseallcells.title": "Collapse All Python Interactive Cells",
"python.command.python.datascience.addcellbelow.title": "Add Empty Cell to File",
"python.command.python.datascience.scrolltocell.title": "Scroll Cell Into View",
"python.command.python.datascience.createnewnotebook.title": "Create New Blank Jupyter Notebook",
"python.command.python.startPage.open.title": "Open Start Page",
"python.command.python.datascience.selectJupyterInterpreter.title": "Select Interpreter to start Jupyter server",
"Datascience.currentlySelectedJupyterInterpreterForPlaceholder": "current: {0}",
"python.command.python.analysis.clearCache.title": "Clear Module Analysis Cache",
"python.snippet.launch.standard.label": "Python: Current File",
"python.snippet.launch.module.label": "Python: Module",
"python.snippet.launch.module.default": "enter-your-module-name",
"python.snippet.launch.attach.label": "Python: Remote Attach",
"python.snippet.launch.attachpid.label": "Python: Attach using Process Id",
"python.snippet.launch.django.label": "Python: Django",
"python.snippet.launch.flask.label": "Python: Flask",
"python.snippet.launch.pyramid.label": "Python: Pyramid Application",
"LanguageService.bannerMessage": "Can you please take 2 minutes to tell us how the Python Language Server is working for you?",
"LanguageService.bannerLabelYes": "Yes, take survey now",
"LanguageService.bannerLabelNo": "No, thanks",
"LanguageService.lsFailedToStart": "We encountered an issue starting the Language Server. Reverting to the alternative, Jedi. Check the Python output panel for details.",
"LanguageService.lsFailedToDownload": "We encountered an issue downloading the Language Server. Reverting to the alternative, Jedi. Check the Python output panel for details.",
"LanguageService.lsFailedToExtract": "We encountered an issue extracting the Language Server. Reverting to the alternative, Jedi. Check the Python output panel for details.",
"DataScience.unknownMimeTypeFormat": "Mime type {0} is not currently supported.",
"DataScience.historyTitle": "Python Interactive",
"DataScience.dataExplorerTitle": "Data Viewer",
"DataScience.badWebPanelFormatString": "<html><body><h1>{0} is not a valid file name</h1></body></html>",
"DataScience.sessionDisposed": "Cannot execute code, session has been disposed.",
"DataScience.rawKernelProcessNotStarted": "Raw kernel process was not able to start.",
"DataScience.rawKernelProcessExitBeforeConnect": "Raw kernel process exited before connecting.",
"DataScience.passwordFailure": "Failed to connect to password protected server. Check that password is correct.",
"DataScience.exportDialogTitle": "Export to Jupyter Notebook",
"DataScience.exportDialogFilter": "Jupyter Notebooks",
"DataScience.exportDialogComplete": "Notebook written to {0}",
"DataScience.exportDialogFailed": "Failed to export notebook. {0}",
"DataScience.exportOpenQuestion": "Open in browser",
"DataScience.exportOpenQuestion1": "Open in editor",
"DataScience.collapseInputTooltip": "Collapse input block",
"DataScience.collapseVariableExplorerTooltip": "Hide variables active in jupyter kernel",
"DataScience.collapseVariableExplorerLabel": "Variables",
"DataScience.expandVariableExplorerTooltip": "Show variables active in jupyter kernel",
"DataScience.close": "Close",
"DataScience.variableLoadingValue": "Loading...",
"DataScience.importDialogTitle": "Import Jupyter Notebook",
"DataScience.importDialogFilter": "Jupyter Notebooks",
"DataScience.notebookCheckForImportYes": "Import",
"DataScience.reloadRequired": "Please reload the window for new settings to take effect.",
"DataScience.notebookCheckForImportNo": "Later",
"DataScience.notebookCheckForImportDontAskAgain": "Don't Ask Again",
"DataScience.notebookCheckForImportTitle": "Do you want to import the Jupyter Notebook into Python code?",
"DataScience.jupyterNotSupported": "Jupyter cannot be started. Error attempting to locate jupyter: {0}",
"DataScience.jupyterNotSupportedBecauseOfEnvironment": "Activating {0} to run Jupyter failed with {1}.",
"DataScience.jupyterNbConvertNotSupported": "Importing notebooks requires Jupyter nbconvert to be installed.",
"DataScience.jupyterLaunchNoURL": "Failed to find the URL of the launched Jupyter notebook server",
"DataScience.jupyterLaunchTimedOut": "The Jupyter notebook server failed to launch in time",
"DataScience.jupyterSelfCertFail": "The security certificate used by server {0} was not issued by a trusted certificate authority.\r\nThis may indicate an attempt to steal your information.\r\nDo you want to enable the Allow Unauthorized Remote Connection setting for this workspace to allow you to connect?",
"DataScience.jupyterSelfCertEnable": "Yes, connect anyways",
"DataScience.jupyterSelfCertClose": "No, close the connection",
"DataScience.jupyterServerCrashed": "Jupyter server crashed. Unable to connect. \r\nError code from jupyter: {0}",
"DataScience.rawConnectionDisplayName": "Direct kernel connection",
"DataScience.rawConnectionBrokenError": "Direct kernel connection broken",
"DataScience.pythonInteractiveHelpLink": "Get more help",
"DataScience.markdownHelpInstallingMissingDependencies": "See [https://aka.ms/pyaiinstall](https://aka.ms/pyaiinstall) for help on installing Jupyter and related dependencies.",
"DataScience.importingFormat": "Importing {0}",
"DataScience.startingJupyter": "Starting Jupyter server",
"DataScience.connectingToJupyter": "Connecting to Jupyter server",
"DataScience.connectingToIPyKernel": "Connecting to IPython kernel",
"DataScience.connectedToIPyKernel": "Connected.",
"Experiments.inGroup": "User belongs to experiment group '{0}'",
"Interpreters.RefreshingInterpreters": "Refreshing Python Interpreters",
"Interpreters.entireWorkspace": "Entire workspace",
"Interpreters.pythonInterpreterPath": "Python interpreter path: {0}",
"Interpreters.LoadingInterpreters": "Loading Python Interpreters",
"Interpreters.unsafeInterpreterMessage": "We found a Python environment in this workspace. Do you want to select it to start up the features in the Python extension? Only accept if you trust this environment.",
"Interpreters.condaInheritEnvMessage": "We noticed you're using a conda environment. If you are experiencing issues with this environment in the integrated terminal, we recommend that you let the Python extension change \"terminal.integrated.inheritEnv\" to false in your user settings.",
"Logging.CurrentWorkingDirectory": "cwd:",
"InterpreterQuickPickList.quickPickListPlaceholder": "Current: {0}",
"InterpreterQuickPickList.enterPath.detail": "Enter path or find an existing interpreter",
"InterpreterQuickPickList.enterPath.label": "Enter interpreter path...",
"InterpreterQuickPickList.enterPath.placeholder": "Enter path to a Python interpreter.",
"InterpreterQuickPickList.browsePath.label": "Find...",
"InterpreterQuickPickList.browsePath.detail": "Browse your file system to find a Python interpreter.",
"diagnostics.upgradeCodeRunner": "Please update the Code Runner extension for it to be compatible with the Python extension.",
"Common.bannerLabelYes": "Yes",
"Common.bannerLabelNo": "No",
"Common.doNotShowAgain": "Do not show again",
"Common.reload": "Reload",
"Common.moreInfo": "More Info",
"Common.and": "and",
"Common.ok": "Ok",
"Common.install": "Install",
"Common.learnMore": "Learn more",
"Common.reportThisIssue": "Report this issue",
"OutputChannelNames.languageServer": "Python Language Server",
"OutputChannelNames.python": "Python",
"OutputChannelNames.pythonTest": "Python Test Log",
"OutputChannelNames.jupyter": "Jupyter",
"ExtensionSurveyBanner.bannerMessage": "Can you please take 2 minutes to tell us how the Python extension is working for you?",
"ExtensionSurveyBanner.maybeLater": "Maybe later",
"ExtensionChannels.installingInsidersMessage": "Installing Insiders... ",
"ExtensionChannels.installingStableMessage": "Installing Stable... ",
"ExtensionChannels.installationCompleteMessage": "complete.",
"ExtensionChannels.downloadingInsidersMessage": "Downloading Insiders Extension... ",
"ExtensionChannels.yesWeekly": "Yes, weekly",
"ExtensionChannels.yesDaily": "Yes, daily",
"ExtensionChannels.promptMessage": "We noticed you are using Visual Studio Code Insiders. Would you like to use the Insiders build of the Python extension?",
"ExtensionChannels.reloadToUseInsidersMessage": "Please reload Visual Studio Code to use the insiders build of the Python extension.",
"ExtensionChannels.downloadCompletedOutputMessage": "Insiders build download complete.",
"ExtensionChannels.startingDownloadOutputMessage": "Starting download for Insiders build.",
"Interpreters.environmentPromptMessage": "We noticed a new virtual environment has been created. Do you want to select it for the workspace folder?",
"DataScience.reloadAfterChangingJupyterServerConnection": "Please reload VS Code when changing the Jupyter Server connection.",
"DataScience.restartKernelMessage": "Do you want to restart the IPython kernel? All variables will be lost.",
"DataScience.restartKernelMessageYes": "Yes",
"DataScience.restartKernelMessageNo": "No",
"DataScience.restartingKernelFailed": "Kernel restart failed. Jupyter server is hung. Please reload VS Code.",
"DataScience.interruptingKernelFailed": "Kernel interrupt failed. Jupyter server is hung. Please reload VS Code.",
"DataScienceSurveyBanner.bannerMessage": "Can you please take 2 minutes to tell us how the Python Data Science features are working for you?",
"DataScienceSurveyBanner.bannerLabelYes": "Yes, take survey now",
"DataScienceSurveyBanner.bannerLabelNo": "No, thanks",
"InteractiveShiftEnterBanner.bannerMessage": "Would you like to run code in the 'Python Interactive' window (an IPython console) for 'shift-enter'? Select 'No' to continue to run code in the Python Terminal. This can be changed later in settings.",
"DataScience.restartingKernelStatus": "Restarting IPython Kernel",
"DataScience.executingCode": "Executing Cell",
"DataScience.collapseAll": "Collapse all cell inputs",
"DataScience.expandAll": "Expand all cell inputs",
"DataScience.export": "Export as Jupyter notebook",
"DataScience.restartServer": "Restart IPython kernel",
"DataScience.undo": "Undo",
"DataScience.redo": "Redo",
"DataScience.clearAll": "Remove all cells",
"DataScience.pythonVersionHeader": "Python version:",
"DataScience.pythonRestartHeader": "Restarted kernel:",
"DataScience.pythonNewHeader": "Started new kernel:",
"DataScience.pythonConnectHeader": "Connected to kernel:",
"DataScience.executingCodeFailure": "Executing code failed : {0}",
"DataScience.inputWatermark": "Type code here and press shift-enter to run",
"DataScience.deleteButtonTooltip": "Remove cell",
"DataScience.gotoCodeButtonTooltip": "Go to code",
"DataScience.copyBackToSourceButtonTooltip": "Paste code into file",
"DataScience.copyToClipboardButtonTooltip": "Copy source to clipboard",
"DataScience.plotOpen": "Expand image",
"Linter.enableLinter": "Enable {0}",
"Linter.enablePylint": "You have a pylintrc file in your workspace. Do you want to enable pylint?",
"Linter.replaceWithSelectedLinter": "Multiple linters are enabled in settings. Replace with '{0}'?",
"Installer.noCondaOrPipInstaller": "There is no Conda or Pip installer available in the selected environment.",
"Installer.noPipInstaller": "There is no Pip installer available in the selected environment.",
"Installer.searchForHelp": "Search for help",
"DataScience.libraryNotInstalled": "Data Science library {0} is not installed. Install?",
"DataScience.libraryRequiredToLaunchJupyterNotInstalled": "Data Science library {0} is not installed.",
"DataScience.librariesRequiredToLaunchJupyterNotInstalled": "Data Science libraries {0} are not installed.",
"DataScience.libraryRequiredToLaunchJupyterNotInstalledInterpreter": "Data Science library {1} is not installed in interpreter {0}.",
"DataScience.librariesRequiredToLaunchJupyterNotInstalledInterpreter": "Data Science libraries {1} are not installed in interpreter {0}.",
"DataScience.jupyterInstall": "Install",
"DataScience.jupyterSelectURIPrompt": "Enter the URI of the running Jupyter server",
"DataScience.jupyterSelectURIInvalidURI": "Invalid URI specified",
"DataScience.jupyterSelectPasswordPrompt": "Enter your notebook password",
"DataScience.jupyterNotebookFailure": "Jupyter notebook failed to launch. \r\n{0}",
"DataScience.jupyterNotebookConnectFailed": "Failed to connect to Jupyter notebook. \r\n{0}\r\n{1}",
"DataScience.jupyterNotebookRemoteConnectFailed": "Failed to connect to remote Jupyter notebook.\r\nCheck that the Jupyter Server URI setting has a valid running server specified.\r\n{0}\r\n{1}",
"DataScience.jupyterNotebookRemoteConnectSelfCertsFailed": "Failed to connect to remote Jupyter notebook.\r\nSpecified server is using self signed certs. Enable Allow Unauthorized Remote Connection setting to connect anyways\r\n{0}\r\n{1}",
"DataScience.notebookVersionFormat": "Jupyter Notebook Version: {0}",
"DataScience.jupyterKernelSpecNotFound": "Cannot create a Jupyter kernel spec and none are available for use",
"DataScience.jupyterKernelSpecModuleNotFound": "'Kernelspec' module not installed in the selected interpreter ({0}).\n Please re-install or update 'jupyter'.",
"DataScience.jupyterGetVariablesBadResults": "Failed to fetch variable info from the Jupyter server.",
"DataScience.liveShareConnectFailure": "Cannot connect to host Jupyter session. URI not found.",
"DataScience.liveShareCannotSpawnNotebooks": "Spawning Jupyter notebooks is not supported over a live share connection",
"DataScience.liveShareCannotImportNotebooks": "Importing notebooks is not currently supported over a live share connection",
"DataScience.liveShareHostFormat": "{0} Jupyter Server",
"DataScience.liveShareSyncFailure": "Synchronization failure during live share startup.",
"DataScience.liveShareServiceFailure": "Failure starting '{0}' service during live share connection.",
"DataScience.documentMismatch": "Cannot run cells, duplicate documents for {0} found.",
"DataScience.pythonInteractiveCreateFailed": "Failure to create a 'Python Interactive' window. Try reinstalling the Python extension.",
"diagnostics.removePythonPathSettingsJson": "The setting \"python.pythonPath\" defined in your settings.json is now deprecated. Do you want us to delete it from your settings.json only? [Learn more](https://aka.ms/AA7jfor).",
"diagnostics.removePythonPathCodeWorkspace": "The setting \"python.pythonPath\" defined in your workspace settings is now deprecated. Do you want us to delete it from your .code-workspace file only? [Learn more](https://aka.ms/AA7jfor).",
"diagnostics.removePythonPathCodeWorkspaceAndSettingsJson": "The setting \"python.pythonPath\" defined in your workspace settings is now deprecated. Do you want us to delete it from your .code-workspace file and settings.json? [Learn more](https://aka.ms/AA7jfor).",
"diagnostics.warnSourceMaps": "Source map support is enabled in the Python Extension, this will adversely impact performance of the extension.",
"diagnostics.disableSourceMaps": "Disable Source Map Support",
"diagnostics.warnBeforeEnablingSourceMaps": "Enabling source map support in the Python Extension will adversely impact performance of the extension.",
"diagnostics.enableSourceMapsAndReloadVSC": "Enable and reload Window",
"diagnostics.lsNotSupported": "Your operating system does not meet the minimum requirements of the Python Language Server. Reverting to the alternative autocompletion provider, Jedi.",
"diagnostics.invalidPythonPathInDebuggerSettings": "You need to select a Python interpreter before you start debugging.\n\nTip: click on \"Select Python Interpreter\" in the status bar.",
"diagnostics.invalidPythonPathInDebuggerLaunch": "The Python path in your debug configuration is invalid.",
"diagnostics.invalidDebuggerTypeDiagnostic": "Your launch.json file needs to be updated to change the \"pythonExperimental\" debug configurations to use the \"python\" debugger type, otherwise Python debugging may not work. Would you like to automatically update your launch.json file now?",
"diagnostics.consoleTypeDiagnostic": "Your launch.json file needs to be updated to change the console type string from \"none\" to \"internalConsole\", otherwise Python debugging may not work. Would you like to automatically update your launch.json file now?",
"diagnostics.justMyCodeDiagnostic": "Configuration \"debugStdLib\" in launch.json is no longer supported. It's recommended to replace it with \"justMyCode\", which is the exact opposite of using \"debugStdLib\". Would you like to automatically update your launch.json file to do that?",
"diagnostics.yesUpdateLaunch": "Yes, update launch.json",
"diagnostics.processId": "Attaching the debugger to a local process is an experimental feature. It will be available to all users soon.",
"diagnostics.invalidTestSettings": "Your settings needs to be updated to change the setting \"python.unitTest.\" to \"python.testing.\", otherwise testing Python code using the extension may not work. Would you like to automatically update your settings now?",
"DataScience.interruptKernel": "Interrupt IPython kernel",
"DataScience.clearAllOutput": "Clear All Output",
"DataScience.exportingFormat": "Exporting {0}",
"DataScience.exportCancel": "Cancel",
"Common.canceled": "Canceled",
"Common.cancel": "Cancel",
"Common.yesPlease": "Yes, please",
"DataScience.importChangeDirectoryComment": "{0} Change working directory from the workspace root to the ipynb file location. Turn this addition off with the DataScience.changeDirOnImportExport setting",
"DataScience.exportChangeDirectoryComment": "# Change directory to VSCode workspace root so that relative path loads work correctly. Turn this addition off with the DataScience.changeDirOnImportExport setting",
"DataScience.interruptKernelStatus": "Interrupting IPython Kernel",
"DataScience.restartKernelAfterInterruptMessage": "Interrupting the kernel timed out. Do you want to restart the kernel instead? All variables will be lost.",
"DataScience.pythonInterruptFailedHeader": "Keyboard interrupt crashed the kernel. Kernel restarted.",
"DataScience.sysInfoURILabel": "Jupyter Server URI: ",
"DataScience.jupyterStartTimedout": "Starting Jupyter has timedout. Please check the 'Jupyter' output panel for further details.",
"DataScience.startingJupyterLogMessage": "Starting Jupyter from {0} with command line {1}",
"DataScience.jupyterCommandLineDefaultLabel": "Default (recommended)",
"DataScience.jupyterCommandLineDefaultDetail": "The Python extension will determine the appropriate command line for Jupyter",
"DataScience.jupyterCommandLineCustomLabel": "Custom",
"DataScience.jupyterCommandLineCustomDetail": "Customize the command line passed to Jupyter on startup",
"DataScience.jupyterCommandLineReloadQuestion": "Please reload the window when changing the Jupyter command line.",
"DataScience.jupyterCommandLineReloadAnswer": "Reload",
"DataScience.jupyterCommandLineQuickPickPlaceholder": "Choose an option",
"DataScience.jupyterCommandLineQuickPickTitle": "Pick command line for Jupyter",
"DataScience.jupyterCommandLinePrompt": "Enter your custom command line for Jupyter",
"Common.loadingPythonExtension": "Python extension loading...",
"debug.selectConfigurationTitle": "Select a debug configuration",
"debug.selectConfigurationPlaceholder": "Debug Configuration",
"debug.launchJsonConfigurationsCompletionLabel": "Python",
"debug.launchJsonConfigurationsCompletionDescription": "Select a Python debug configuration",
"debug.debugFileConfigurationLabel": "Python File",
"debug.debugFileConfigurationDescription": "Debug the currently active Python file",
"debug.debugModuleConfigurationLabel": "Module",
"debug.debugModuleConfigurationDescription": "Debug a Python module by invoking it with '-m'",
"debug.moduleEnterModuleTitle": "Debug Module",
"debug.moduleEnterModulePrompt": "Enter a Python module/package name",
"debug.moduleEnterModuleDefault": "enter-your-module-name",
"debug.moduleEnterModuleInvalidNameError": "Enter a valid module name",
"debug.remoteAttachConfigurationLabel": "Remote Attach",
"debug.remoteAttachConfigurationDescription": "Attach to a remote debug server",
"debug.attachRemoteHostTitle": "Remote Debugging",
"debug.attachRemoteHostPrompt": "Enter the host name",
"debug.attachRemoteHostValidationError": "Enter a valid host name or IP address",
"debug.attachRemotePortTitle": "Remote Debugging",
"debug.attachRemotePortPrompt": "Enter the port number that the debug server is listening on",
"debug.attachRemotePortValidationError": "Enter a valid port number",
"debug.attachPidConfigurationLabel": "Attach using Process ID",
"debug.attachPidConfigurationDescription": "Attach to a local process",
"debug.debugDjangoConfigurationLabel": "Django",
"debug.debugDjangoConfigurationDescription": "Launch and debug a Django web application",
"debug.djangoEnterManagePyPathTitle": "Debug Django",
"debug.djangoEnterManagePyPathPrompt": "Enter the path to manage.py ('${workspaceFolderToken}' points to the root of the current workspace folder)",
"debug.djangoEnterManagePyPathInvalidFilePathError": "Enter a valid Python file path",
"debug.debugFlaskConfigurationLabel": "Flask",
"debug.debugFlaskConfigurationDescription": "Launch and debug a Flask web application",
"debug.flaskEnterAppPathOrNamePathTitle": "Debug Flask",
"debug.flaskEnterAppPathOrNamePathPrompt": "Enter the path to the application, e.g. 'app.py' or 'app'",
"debug.flaskEnterAppPathOrNamePathInvalidNameError": "Enter a valid name",
"debug.debugPyramidConfigurationLabel": "Pyramid",
"debug.debugPyramidConfigurationDescription": "Web Application",
"debug.pyramidEnterDevelopmentIniPathTitle": "Debug Pyramid",
"debug.pyramidEnterDevelopmentIniPathPrompt": "`Enter the path to development.ini ('${workspaceFolderToken}' points to the root of the current workspace folder)`",
"debug.pyramidEnterDevelopmentIniPathInvalidFilePathError": "Enter a valid file path",
"Testing.testErrorDiagnosticMessage": "Error",
"Testing.testFailDiagnosticMessage": "Fail",
"Testing.testSkippedDiagnosticMessage": "Skipped",
"Testing.configureTests": "Configure Test Framework",
"Testing.disableTests": "Disable Tests",
"Common.openOutputPanel": "Show output",
"LanguageService.downloadFailedOutputMessage": "Language server download failed",
"LanguageService.extractionFailedOutputMessage": "Language server extraction failed",
"LanguageService.extractionCompletedOutputMessage": "Language server download complete",
"LanguageService.extractionDoneOutputMessage": "done",
"LanguageService.reloadVSCodeIfSeachPathHasChanged": "Search paths have changed for this Python interpreter. Please reload the extension to ensure that the IntelliSense works correctly",
"AttachProcess.unsupportedOS": "Operating system '{0}' not supported.",
"AttachProcess.attachTitle": "Attach to process",
"AttachProcess.selectProcessPlaceholder": "Select the process to attach to",
"AttachProcess.noProcessSelected": "No process selected",
"AttachProcess.refreshList": "Refresh process list",
"DataScience.variableExplorerNameColumn": "Name",
"DataScience.variableExplorerTypeColumn": "Type",
"DataScience.variableExplorerSizeColumn": "Count",
"DataScience.variableExplorerValueColumn": "Value",
"DataScience.showDataExplorerTooltip": "Show variable in data viewer.",
"DataScience.dataExplorerInvalidVariableFormat": "'{0}' is not an active variable.",
"DataScience.jupyterGetVariablesExecutionError": "Failure during variable extraction:\r\n{0}",
"DataScience.loadingMessage": "loading ...",
"DataScience.fetchingDataViewer": "Fetching data ...",
"DataScience.noRowsInDataViewer": "No rows match current filter",
"DataScience.jupyterServer": "Jupyter Server",
"DataScience.noKernel": "No Kernel",
"DataScience.serverNotStarted": "Not Started",
"DataScience.localJupyterServer": "local",
"DataScience.pandasTooOldForViewingFormat": "Python package 'pandas' is version {0}. Version 0.20 or greater is required for viewing data.",
"DataScience.pandasRequiredForViewing": "Python package 'pandas' is required for viewing data.",
"DataScience.valuesColumn": "values",
"DataScience.liveShareInvalid": "One or more guests in the session do not have the Python [extension](https://marketplace.visualstudio.com/itemdetails?itemName=ms-python.python) installed.\r\nYour Live Share session cannot continue and will be closed.",
"diagnostics.updateSettings": "Yes, update settings",
"Common.noIWillDoItLater": "No, I will do it later",
"Common.notNow": "Not now",
"Common.gotIt": "Got it!",
"Interpreters.selectInterpreterTip": "Tip: you can change the Python interpreter used by the Python extension by clicking on the Python version in the status bar",
"DataScience.noRowsInVariableExplorer": "No variables defined",
"DataScience.tooManyColumnsMessage": "Variables with over a 1000 columns may take a long time to display. Are you sure you wish to continue?",
"DataScience.tooManyColumnsYes": "Yes",
"DataScience.tooManyColumnsNo": "No",
"DataScience.tooManyColumnsDontAskAgain": "Don't Ask Again",
"DataScience.filterRowsButton": "Filter Rows",
"DataScience.filterRowsTooltip": "Allows filtering multiple rows. Use =, >, or < signs to filter numeric values.",
"DataScience.previewHeader": "--- Begin preview of {0} ---",
"DataScience.previewFooter": "--- End preview of {0} ---",
"DataScience.previewStatusMessage": "Generating preview of {0}",
"DataScience.plotViewerTitle": "Plots",
"DataScience.exportPlotTitle": "Save plot image",
"DataScience.pdfFilter": "PDF",
"DataScience.pngFilter": "PNG",
"DataScience.svgFilter": "SVG",
"DataScience.previousPlot": "Previous",
"DataScience.nextPlot": "Next",
"DataScience.panPlot": "Pan",
"DataScience.zoomInPlot": "Zoom in",
"DataScience.zoomOutPlot": "Zoom out",
"DataScience.exportPlot": "Export to different formats",
"DataScience.deletePlot": "Remove",
"DataScience.collapseSingle": "Collapse",
"DataScience.expandSingle": "Expand",
"DataScience.editSection": "Input new cells here.",
"DataScience.restartKernelMessageDontAskAgain": "Yes, and Don't Ask Again",
"DataScience.selectedImageListLabel": "Selected Image",
"DataScience.imageListLabel": "Image",
"DataScience.exportImageFailed": "Error exporting image: {0}",
"downloading.file": "Downloading {0}...",
"downloading.file.progress": "{0}{1} of {2} KB ({3}%)",
"DataScience.jupyterDataRateExceeded": "Cannot view variable because data rate exceeded. Please restart your server with a higher data rate limit. For example, --NotebookApp.iopub_data_rate_limit=10000000000.0",
"DataScience.addCellBelowCommandTitle": "Add cell",
"DataScience.debugCellCommandTitle": "Debug cell",
"DataScience.debugStepOverCommandTitle": "Step over",
"DataScience.debugContinueCommandTitle": "Continue",
"DataScience.debugStopCommandTitle": "Stop",
"DataScience.runCurrentCellAndAddBelow": "Run current and add cell below",
"DataScience.variableExplorerDisabledDuringDebugging": "Please see the Debug Side Bar's VARIABLES section.",
"DataScience.jupyterDebuggerNotInstalledError": "Pip module {0} is required for debugging cells. You will need to install it to debug cells.",
"DataScience.jupyterDebuggerOutputParseError": "Unable to parse {0} output, please log an issue with https://github.com/microsoft/vscode-python",
"DataScience.jupyterDebuggerPortNotAvailableError": "Port {0} cannot be opened for debugging. Please specify a different port in the remoteDebuggerPort setting.",
"DataScience.jupyterDebuggerPortBlockedError": "Port {0} cannot be connected to for debugging. Please let port {0} through your firewall.",
"DataScience.jupyterDebuggerPortNotAvailableSearchError": "Ports in the range {0}-{1} cannot be found for debugging. Please specify a port in the remoteDebuggerPort setting.",
"DataScience.jupyterDebuggerPortBlockedSearchError": "A port cannot be connected to for debugging. Please let ports {0}-{1} through your firewall.",
"DataScience.jupyterDebuggerInstallNew": "Pip module {0} is required for debugging cells. Install {0} and continue to debug cell?",
"DataScience.jupyterDebuggerInstallNewRunByLine": "Pip module {0} is required for running by line. Install {0} and continue to run by line?",
"DataScience.jupyterDebuggerInstallUpdate": "The version of {0} installed does not support debugging cells. Update {0} to newest version and continue to debug cell?",
"DataScience.jupyterDebuggerInstallUpdateRunByLine": "The version of {0} installed does not support running by line. Update {0} to newest version and continue to run by line?",
"DataScience.jupyterDebuggerInstallYes": "Yes",
"DataScience.jupyterDebuggerInstallNo": "No",
"DataScience.cellStopOnErrorFormatMessage": "{0} cells were canceled due to an error in the previous cell.",
"DataScience.instructionComments": "# To add a new cell, type '{0}'\n# To add a new markdown cell, type '{0} [markdown]'\n",
"DataScience.scrollToCellTitleFormatMessage": "Go to [{0}]",
"DataScience.remoteDebuggerNotSupported": "Debugging while attached to a remote server is not currently supported.",
"DataScience.save": "Save notebook",
"DataScience.invalidNotebookFileError": "{0} is not a valid notebook file. Check the file for correct json.",
"DataScience.nativeEditorTitle": "Notebook Editor",
"DataScience.untitledNotebookFileName": "Untitled",
"DataScience.dirtyNotebookMessage1": "Do you want to save the changes you made to {0}?",
"DataScience.dirtyNotebookMessage2": "Your changes will be lost if you don't save them.",
"DataScience.dirtyNotebookYes": "Save",
"DataScience.dirtyNotebookNo": "Don't Save",
"DataScience.dirtyNotebookCancel": "Cancel",
"DataScience.dirtyNotebookDialogTitle": "Save",
"DataScience.dirtyNotebookDialogFilter": "Jupyter Notebooks",
"DataScience.exportAsPythonFileTooltip": "Convert and save to a python script",
"DataScience.exportAsPythonFileTitle": "Save as Python File",
"DataScience.runCell": "Run cell",
"DataScience.deleteCell": "Delete cell",
"DataScience.moveCellUp": "Move cell up",
"DataScience.moveCellDown": "Move cell down",
"DataScience.moveSelectedCellUp": "Move selected cell up",
"DataScience.insertBelow": "Insert cell below",
"DataScience.insertAbove": "Insert cell above",
"DataScience.addCell": "Add cell",
"DataScience.runAll": "Run all cells",
"DataScience.convertingToPythonFile": "Converting ipynb to python file",
"DataScience.untitledNotebookMessage": "Your changes will be lost if you don't save them.",
"DataScience.untitledNotebookYes": "Save",
"DataScience.untitledNotebookNo": "Cancel",
"DataScience.noInterpreter": "No python selected",
"DataScience.notebookNotFound": "python -m jupyter notebook --version is not running",
"DataScience.findJupyterCommandProgress": "Active interpreter does not support {0}. Searching for the best available interpreter.",
"DataScience.findJupyterCommandProgressCheckInterpreter": "Checking {0}.",
"DataScience.findJupyterCommandProgressSearchCurrentPath": "Searching current path.",
"DataScience.gatheredScriptDescription": "# This file was generated by an experimental feature called 'Gather'.\n#\n# The intent is that it contains only the code required to produce\n# the same results as the cell originally selected for gathering.\n# Please note that the Python analysis is quite conservative, so if\n# it is unsure whether a line of code is necessary for execution, it\n# will err on the side of including it.\n#\n# Please let us know if you are satisfied with what was gathered here:\n# https://aka.ms/gathersurvey\n\n",
"DataScience.gatheredNotebookDescriptionInMarkdown": "## Gathered Notebook\nGathered from ```{0}```\n\n| | |\n|---|---|\n|  |This notebook was generated by an experimental feature called \"Gather\". The intent is that it contains only the code and cells required to produce the same results as the cell originally selected for gathering. Please note that the Python analysis is quite conservative, so if it is unsure whether a line of code is necessary for execution, it will err on the side of including it.|\n\n**Are you satisfied with the code that was gathered?**\n\n[Yes](https://command:python.datascience.gatherquality?yes) [No](https://command:python.datascience.gatherquality?no)",
"DataScience.savePngTitle": "Save Image",
"DataScience.jupyterSelectURIQuickPickTitle": "Pick how to connect to Jupyter",
"DataScience.jupyterSelectURIQuickPickPlaceholder": "Choose an option",
"DataScience.jupyterSelectURILocalLabel": "Default",
"DataScience.jupyterSelectURILocalDetail": "VS Code will automatically start a server for you on the localhost",
"DataScience.jupyterSelectURINewLabel": "Existing",
"DataScience.jupyterSelectURINewDetail": "Specify the URI of an existing server",
"DataScience.jupyterSelectURIMRUDetail": "Last Connection: {0}",
"DataScience.jupyterSelectURIRunningDetailFormat": "Last activity {0}. {1} existing connections.",
"DataScience.jupyterSelectURINotRunningDetail": "Cannot connect at this time. Status unknown.",
"DataScience.fallbackToUseActiveInterpeterAsKernel": "Couldn't find kernel '{0}' that the notebook was created with. Using the current interpreter.",
"DataScience.fallBackToRegisterAndUseActiveInterpeterAsKernel": "Couldn't find kernel '{0}' that the notebook was created with. Registering a new kernel using the current interpreter.",
"DataScience.fallBackToPromptToUseActiveInterpreterOrSelectAKernel": "Couldn't find kernel '{0}' that the notebook was created with.",
"DataScience.selectKernel": "Select a Kernel",
"DataScience.selectDifferentKernel": "Select a different Kernel",
"DataScience.selectDifferentJupyterInterpreter": "Select a different Interpreter",
"DataScience.selectJupyterInterpreter": "Select an Interpreter to start Jupyter",
"products.installingModule": "Installing {0}",
"DataScience.switchingKernelProgress": "Switching kernel to '{0}'",
"DataScience.sessionStartFailedWithKernel": "Failed to start a session for the Kernel '{0}'. \nView Jupyter [log](command:{1}) for further details.",
"DataScience.waitingForJupyterSessionToBeIdle": "Waiting for Jupyter Session to be idle",
"DataScience.gettingListOfKernelsForLocalConnection": "Fetching Kernels",
"DataScience.gettingListOfKernelsForRemoteConnection": "Fetching Kernels",
"DataScience.gettingListOfKernelSpecs": "Fetching Kernel specs",
"DataScience.startingJupyterNotebook": "Starting Jupyter Notebook",
"DataScience.registeringKernel": "Registering Kernel",
"DataScience.trimmedOutput": "Output was trimmed for performance reasons.\nTo see the full output set the setting \"python.dataScience.textOutputLimit\" to 0.",
"DataScience.connectingToJupyterUri": "Connecting to Jupyter server at {0}",
"DataScience.createdNewNotebook": "{0}: Creating new notebook ",
"DataScience.createdNewKernel": "{0}: Kernel started: {1}",
"DataScience.kernelInvalid": "Kernel {0} is not usable. Check the Jupyter output tab for more information.",
"OutdatedDebugger.updateDebuggerMessage": "We noticed you are attaching to ptvsd (Python debugger), which will be deprecated on May 1st, 2020. Please switch to [debugpy](https://aka.ms/migrateToDebugpy).",
"DataScience.nativeDependencyFail": "We cannot launch a jupyter server because your OS is not supported. Select an already running server if you wish to continue. {0}",
"DataScience.selectNewServer": "Pick Running Server",
"DataScience.jupyterSelectURIRemoteLabel": "Existing",
"DataScience.jupyterSelectURIQuickPickTitleRemoteOnly": "Pick an already running jupyter server",
"DataScience.jupyterSelectURIRemoteDetail": "Specify the URI of an existing server",
"DataScience.gatherQuality": "Did gather work as desired?",
"DataScience.loadClassFailedWithNoInternet": "Error loading {0}:{1}. Internet connection required for loading 3rd party widgets.",
"DataScience.useCDNForWidgets": "Widgets require us to download supporting files from a 3rd party website. Click [here](https://aka.ms/PVSCIPyWidgets) for more information.",
"DataScience.loadThirdPartyWidgetScriptsPostEnabled": "Please restart the Kernel when changing the setting 'python.dataScience.widgetScriptSources'.",
"DataScience.enableCDNForWidgetsSetting": "Widgets require us to download supporting files from a 3rd party website. Click <a href='https://command:python.datascience.enableLoadingWidgetScriptsFromThirdPartySource'>here</a> to enable this or click <a href='https://aka.ms/PVSCIPyWidgets'>here</a> for more information. (Error loading {0}:{1}).",
"DataScience.widgetScriptNotFoundOnCDNWidgetMightNotWork": "Unable to load a compatible version of the widget '{0}'. Expected behavior may be affected.",
"DataScience.unhandledMessage": "Unhandled kernel message from a widget: {0} : {1}",
"DataScience.qgridWidgetScriptVersionCompatibilityWarning": "Unable to load a compatible version of the widget 'qgrid'. Consider downgrading to version 1.1.1.",
"DataScience.kernelStarted": "Started kernel {0}",
"StartPage.getStarted": "Python - Get Started",
"StartPage.pythonExtensionTitle": "Python Extension",
"StartPage.createJupyterNotebook": "Create a Jupyter Notebook",
"StartPage.notebookDescription": "- Use \"<div class=\"italics\">Shift + Command + P</div> \" to open the <div class=\"link\" role=\"button\" onclick={0}>Command Palette</div><br />- Type \"<div class=\"link italics\" role=\"button\" onclick={1}>Create New Blank Jupyter Notebook</div> \"<br />- Explore our <div class=\"link\" role=\"button\" onclick={2}>sample notebook</div> to learn about notebook features",
"StartPage.createAPythonFile": "Create a Python File",
"StartPage.pythonFileDescription": "- Create a new file and use the .py extension<br />- <div class=\"link\" role=\"button\" onclick={0}>Open a file or workspace</div> to continue work",
"StartPage.openInteractiveWindow": "Open the Interactive Window",
"StartPage.interactiveWindowDesc": "- You can create cells on a Python file by typing \"#%%\" <br /> - Use \"<div class=\"italics\">Shift + Enter</div> \" to run a cell, the output will be shown in the interactive window",
"StartPage.releaseNotes": "Take a look at our <a class=\"link\" href={0}>Release Notes</a> to learn more about the latest features",
"StartPage.tutorialAndDoc": "Explore more features in our <a class=\"link\" href={0}>Tutorials</a> or check <a class=\"link\" href={1}>Documentation</a> for tips and troubleshooting.",
"StartPage.dontShowAgain": "Don't show this page again",
"StartPage.helloWorld": "Hello world",
"StartPage.sampleNotebook": "Welcome_To_VSCode_Notebooks.ipynb",
"DataScience.libraryRequiredToLaunchJupyterKernelNotInstalledInterpreter": "{0} requires {1} to be installed.",
"DataScience.runByLine": "Run by line",
"DataScience.continueRunByLine": "Stop",
"DataScience.couldNotInstallLibrary": "Could not install {0}. If pip is not available, please use the package manager of your choice to manually install this library into your Python environment.",
"DataScience.rawKernelSessionFailed": "Unable to start session for kernel {0}. Select another kernel to launch with.",
"DataScience.rawKernelConnectingSession": "Connecting to kernel."
}