forked from microsoft/vscode-python
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.nls.json
143 lines (143 loc) · 11.4 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
{
"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 Unit Tests",
"python.command.python.debugtests.title": "Debug All Unit Tests",
"python.command.python.execInTerminal.title": "Run Python File in Terminal",
"python.command.python.setInterpreter.title": "Select Interpreter",
"python.command.python.updateSparkLibrary.title": "Update Workspace PySpark Libraries",
"python.command.python.refactorExtractVariable.title": "Extract Variable",
"python.command.python.refactorExtractMethod.title": "Extract Method",
"python.command.python.viewTestOutput.title": "Show Unit Test Output",
"python.command.python.selectAndRunTestMethod.title": "Run Unit Test Method ...",
"python.command.python.selectAndDebugTestMethod.title": "Debug Unit Test Method ...",
"python.command.python.selectAndRunTestFile.title": "Run Unit Test File ...",
"python.command.python.runCurrentTestFile.title": "Run Current Unit Test File",
"python.command.python.runFailedTests.title": "Run Failed Unit Tests",
"python.command.python.discoverTests.title": "Discover Unit 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.runallcells.title": "Run All Cells",
"python.command.python.datascience.runcurrentcell.title": "Run Current Cell",
"python.command.python.datascience.runcurrentcelladvance.title": "Run Current Cell And Advance",
"python.command.python.datascience.runcell.title": "Run Cell",
"python.command.python.datascience.showhistorypane.title": "Show Python Interactive Pane",
"python.command.python.datascience.selectjupyteruri.title": "Specify Jupyter server URI",
"python.command.python.datascience.importnotebook.title": "Import Jupyter Notebook",
"python.command.python.datascience.importnotebookonfile.title": "Import Jupyter Notebook",
"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.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.snippet.launch.standard.label": "Python: Current File",
"python.snippet.launch.standard.description": "Debug a Python Program with Standard Output",
"python.snippet.launch.pyspark.label": "Python: PySpark",
"python.snippet.launch.pyspark.description": "Debug PySpark",
"python.snippet.launch.module.label": "Python: Module",
"python.snippet.launch.module.description": "Debug a Python Module",
"python.snippet.launch.terminal.label": "Python: Terminal (integrated)",
"python.snippet.launch.terminal.description": "Debug a Python program with Integrated Terminal/Console",
"python.snippet.launch.externalTerminal.label": "Python: Terminal (external)",
"python.snippet.launch.externalTerminal.description": "Debug a Python program with External Terminal/Console",
"python.snippet.launch.django.label": "Python: Django",
"python.snippet.launch.django.description": "Debug a Django Application",
"python.snippet.launch.flask.label": "Python: Flask (0.11.x or later)",
"python.snippet.launch.flask.description": "Debug a Flask Application",
"python.snippet.launch.flaskOld.label": "Python: Flask (0.10.x or earlier)",
"python.snippet.launch.flaskOld.description": "Debug an older styled Flask Application",
"python.snippet.launch.gevent.label": "Python: Gevent",
"python.snippet.launch.gevent.description": "Debug a Gevent Application",
"python.snippet.launch.pyramid.label": "Python: Pyramid Application",
"python.snippet.launch.pyramid.description": "Debug a Pyramid Application",
"python.snippet.launch.watson.label": "Python: Watson Application",
"python.snippet.launch.watson.description": "Debug a Watson Application",
"python.snippet.launch.attach.label": "Python: Attach",
"python.snippet.launch.attach.description": "Attach the Debugger for Remote Debugging",
"python.snippet.launch.scrapy.label": "Python: Scrapy",
"python.snippet.launch.scrapy.description": "Scrapy with Integrated Terminal/Console",
"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",
"DataScience.unknownMimeType": "Unknown mime type for data",
"DataScience.historyTitle": "Python Interactive",
"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.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.collapseInputTooltip": "Collapse input block",
"DataScience.importDialogTitle": "Import Jupyter Notebook",
"DataScience.importDialogFilter": "Jupyter Notebooks",
"DataScience.notebookCheckForImportYes": "Import",
"DataScience.notebookCheckForImportNo": "Later",
"DataScience.notebookCheckForImportDontAskAgain": "Don't Ask Again",
"DataScience.notebookCheckForImportTitle": "Do you want to import the Jupyter Notebook into Python code?",
"DataScience.jupyterNotSupported": "Running cells requires Jupyter notebooks to be installed.",
"DataScience.jupyterNbConvertNotSupported": "Importing notebooks requires Jupyter nbconvert to be installed.",
"DataScience.jupyterLaunchTimedOut": "The Jupyter notebook server failed to launch in time",
"DataScience.jupyterLaunchNoURL": "Failed to find the URL of the launched Jupyter notebook server",
"DataScience.pythonInteractiveHelpLink": "Get more help",
"DataScience.importingFormat": "Importing {0}",
"DataScience.startingJupyter": "Starting Jupyter server",
"DataScience.connectingToJupyter": "Connecting to Jupyter server",
"Interpreters.RefreshingInterpreters": "Refreshing Python Interpreters",
"Interpreters.LoadingInterpreters": "Loading Python Interpreters",
"DataScience.restartKernelMessage": "Do you want to restart the Jupter kernel? All variables will be lost.",
"DataScience.restartKernelMessageYes": "Restart",
"DataScience.restartKernelMessageNo": "Cancel",
"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",
"DataScience.restartingKernelStatus": "Restarting Jupyter 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.pythonVersionHeaderNoPyKernel": "Python Version may not match, no ipykernel found:",
"DataScience.pythonRestartHeader": "Restarted Kernel:",
"Linter.InstalledButNotEnabled": "Linter {0} is installed but not enabled.",
"DataScience.jupyterSelectURILaunchLocal": "Launch local Jupyter server",
"DataScience.jupyterSelectURISpecifyURI": "Type in the URI for the Jupyter server",
"DataScience.jupyterSelectURIPrompt": "Enter the URI of a Jupyter server",
"DataScience.jupyterSelectURIInvalidURI": "Invalid URI specified",
"DataScience.jupyterNotebookFailure": "Jupyter notebook failed to launch. \r\n{0}",
"DataScience.jupyterNotebookConnectFailed": "Failed to connect to Jupyter notebook. \r\n{0}",
"DataScience.notebookVersionFormat": "Jupyter Notebook Version: {0}",
"DataScience.jupyterKernelNotSupportedOnActive": "Jupyter kernel cannot be started from '{0}'. Using closest match {1} instead.",
"DataScience.jupyterKernelSpecNotFound": "Cannot create a Jupyter kernel spec and none are available for use",
"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",
"DataScience.interruptKernel": "Interrupt iPython Kernel",
"DataScience.exportingFormat": "Exporting {0}",
"DataScience.exportCancel": "Cancel",
"Common.canceled": "Canceled",
"DataScience.importChangeDirectoryComment": "#%% Change working directory from the workspace root to the ipynb file location. Turn this addition off with the DataSciece.changeDirOnImportExport setting",
"DataScience.exportChangeDirectoryComment": "# Change directory to VSCode workspace root so that relative path loads work correctly. Turn this addition off with the DataSciece.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: ",
"Common.loadingPythonExtension": "Python extension loading..."
}