forked from DonJayamanne/pythonVSCode
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Simplified Chinese translation of Quickopen command #240
Merged
Merged
Changes from 8 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
42a6406
loc: add Simpified Chinese translation for Quickopen command
342cef0
style: add white space between Chinese and English
28cd6b5
Merge commit 'b4ba602ce67c8a6f41982610b42b21cf164f986a'
73febf2
Revamp as per reviews
8749321
Fix the translation of ‘Attach debugger’
cc8cf6b
Fix the translation of ‘advance’
47051c9
Missing `in`
6f82527
Missing `line`
0a20c0f
Sort imports
cf54531
Merge commit 'e2218b1b4a00402e777a966b0cde4fb438df52b1'
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
{ | ||
"python.command.python.sortImports.title": "对 import 进行排序", | ||
"python.command.python.startREPL.title": "启动 REPL", | ||
"python.command.python.buildWorkspaceSymbols.title": "构建工作区符号", | ||
"python.command.python.runtests.title": "运行所有单元测试", | ||
"python.command.python.debugtests.title": "调试所有单元测试", | ||
"python.command.python.execInTerminal.title": "在终端中运行 Python 文件", | ||
"python.command.python.setInterpreter.title": "选择解析器", | ||
"python.command.python.updateSparkLibrary.title": "更新工作区 PySpark 库", | ||
"python.command.python.refactorExtractVariable.title": "提取变量", | ||
"python.command.python.refactorExtractMethod.title": "提取方法", | ||
"python.command.python.viewTestOutput.title": "显示单元测试输出", | ||
"python.command.python.selectAndRunTestMethod.title": "运行单元测试方法...", | ||
"python.command.python.selectAndDebugTestMethod.title": "调试单元测试方法...", | ||
"python.command.python.selectAndRunTestFile.title": "运行单元测试文件...", | ||
"python.command.python.runCurrentTestFile.title": "运行当前单元测试文件", | ||
"python.command.python.runFailedTests.title": "运行失败的单元测试", | ||
"python.command.python.execSelectionInTerminal.title": "在 Python 终端中运行选定内容/行", | ||
"python.command.python.execSelectionInDjangoShell.title": "在 Django Shell 中运行选定内容/行", | ||
"python.command.jupyter.runSelectionLine.title": "运行选定内容/行", | ||
"python.command.jupyter.execCurrentCell.title": "运行当前 Cell", | ||
"python.command.jupyter.execCurrentCellAndAdvance.title": "运行当前 Cell 并移动到下一个 Cell", | ||
"python.command.jupyter.gotToPreviousCell.title": "转到前一个 Cell", | ||
"python.command.jupyter.gotToNextCell.title": "转到下一个 Cell", | ||
"python.command.python.goToPythonObject.title": "转到 Python 对象", | ||
"python.snippet.launch.standard.label": "Python", | ||
"python.snippet.launch.standard.description": "使用标准输出调试 Python 应用", | ||
"python.snippet.launch.pyspark.label": "Python: PySpark", | ||
"python.snippet.launch.pyspark.description": "调试 PySpark", | ||
"python.snippet.launch.module.label": "Python: 模块", | ||
"python.snippet.launch.module.description": "调试 Python 模块", | ||
"python.snippet.launch.terminal.label": "Python: 终端 (集成)", | ||
"python.snippet.launch.terminal.description": "使用集成终端调试 Python 程序", | ||
"python.snippet.launch.externalTerminal.label": "Python: 终端 (外部)", | ||
"python.snippet.launch.externalTerminal.description": "使用外部终端调试 Python 程序", | ||
"python.snippet.launch.django.label": "Python: Django", | ||
"python.snippet.launch.django.description": "调试 Django 应用", | ||
"python.snippet.launch.flask.label": "Python: Flask (0.11.x 或以后)", | ||
"python.snippet.launch.flask.description": "调试 Flask 应用", | ||
"python.snippet.launch.flaskOld.label": "Python: Flask (0.10.x 或之前)", | ||
"python.snippet.launch.flaskOld.description": "调试旧式 Flask 应用", | ||
"python.snippet.launch.pyramid.label": "Python: Pyramid 应用", | ||
"python.snippet.launch.pyramid.description": "调试 Pyramid 应用", | ||
"python.snippet.launch.watson.label": "Python: Watson 应用", | ||
"python.snippet.launch.watson.description": "调试 Watson 应用", | ||
"python.snippet.launch.attach.label": "Python: 附加", | ||
"python.snippet.launch.attach.description": "附加远程调试器", | ||
"python.snippet.launch.scrapy.label": "Python: Scrapy 应用", | ||
"python.snippet.launch.scrapy.description": "使用集成终端运行 Scrapy" | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
IHMO,
排序 import 语句
is better than对 import 进行排序
. Because all other translations of command begin with a verb, only this is exceptional.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done