Skip to content
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 localization for Japanese #434

Merged
merged 5 commits into from
Dec 19, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ contributors (if you would like to contribute a translation, see the
[pull request which added simplified Chinese](https://github.com/Microsoft/vscode-python/pull/240)):

* `en`
* `ja`
* `ru`
* `zh-cn`

Expand Down
50 changes: 50 additions & 0 deletions package.nls.ja.json
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 シェルで選択範囲/行を実行",
"python.command.jupyter.runSelectionLine.title": "選択範囲/行を実行",
"python.command.jupyter.execCurrentCell.title": "セルを実行",
"python.command.jupyter.execCurrentCellAndAdvance.title": "セルを実行して次へ",
"python.command.jupyter.gotToPreviousCell.title": "前のセルに移動",
"python.command.jupyter.gotToNextCell.title": "次のセルに移動",
"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 を実行"
}