Skip to content

Commit 08008f3

Browse files
YuichiNukiyamaDonJayamanne
authored andcommitted
Add localization for Japanese (#434)
add localization for Japanese
1 parent 29cb6fb commit 08008f3

File tree

2 files changed

+51
-0
lines changed

2 files changed

+51
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ contributors (if you would like to contribute a translation, see the
8989
[pull request which added simplified Chinese](https://github.com/Microsoft/vscode-python/pull/240)):
9090

9191
* `en`
92+
* `ja`
9293
* `ru`
9394
* `zh-cn`
9495

package.nls.ja.json

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
{
2+
"python.command.python.sortImports.title": "import 文を並び替える",
3+
"python.command.python.startREPL.title": "REPL を開始",
4+
"python.command.python.buildWorkspaceSymbols.title": "ワークスペースのシンボルをビルド",
5+
"python.command.python.runtests.title": "すべての単体テストを実行",
6+
"python.command.python.debugtests.title": "すべての単体テストをデバッグ",
7+
"python.command.python.execInTerminal.title": "ターミナルで Python ファイルを実行",
8+
"python.command.python.setInterpreter.title": "インタープリターを選択",
9+
"python.command.python.updateSparkLibrary.title": "ワークスペース PySpark ライブラリを更新",
10+
"python.command.python.refactorExtractVariable.title": "変数を抽出",
11+
"python.command.python.refactorExtractMethod.title": "メソッドを抽出",
12+
"python.command.python.viewTestOutput.title": "単体テストの出力を表示",
13+
"python.command.python.selectAndRunTestMethod.title": "単体テストメソッドを実行...",
14+
"python.command.python.selectAndDebugTestMethod.title": "単体テストメソッドをデバッグ...",
15+
"python.command.python.selectAndRunTestFile.title": "単体テストファイルを実行...",
16+
"python.command.python.runCurrentTestFile.title": "現在の単体テストファイルを実行",
17+
"python.command.python.runFailedTests.title": "失敗した単体テストを実行",
18+
"python.command.python.execSelectionInTerminal.title": "Python ターミナルで選択範囲/行を実行",
19+
"python.command.python.execSelectionInDjangoShell.title": "Django シェルで選択範囲/行を実行",
20+
"python.command.jupyter.runSelectionLine.title": "選択範囲/行を実行",
21+
"python.command.jupyter.execCurrentCell.title": "セルを実行",
22+
"python.command.jupyter.execCurrentCellAndAdvance.title": "セルを実行して次へ",
23+
"python.command.jupyter.gotToPreviousCell.title": "前のセルに移動",
24+
"python.command.jupyter.gotToNextCell.title": "次のセルに移動",
25+
"python.command.python.goToPythonObject.title": "Python オブジェクトに移動",
26+
"python.snippet.launch.standard.label": "Python",
27+
"python.snippet.launch.standard.description": "標準出力で Python プログラムをデバッグ",
28+
"python.snippet.launch.pyspark.label": "Python: PySpark",
29+
"python.snippet.launch.pyspark.description": "PySpark をデバッグ",
30+
"python.snippet.launch.module.label": "Python: モジュール",
31+
"python.snippet.launch.module.description": "Python モジュールをデバッグ",
32+
"python.snippet.launch.terminal.label": "Python: ターミナル (統合)",
33+
"python.snippet.launch.terminal.description": "統合ターミナル/コンソールで Python プログラムをデバッグ",
34+
"python.snippet.launch.externalTerminal.label": "Python: ターミナル (外部)",
35+
"python.snippet.launch.externalTerminal.description": "外部のターミナル/コンソールで Python プログラムをデバッグ",
36+
"python.snippet.launch.django.label": "Python: Django",
37+
"python.snippet.launch.django.description": "Django アプリケーションをデバッグ",
38+
"python.snippet.launch.flask.label": "Python: Flask (0.11.x 以降)",
39+
"python.snippet.launch.flask.description": "Flask アプリケーションをデバッグ",
40+
"python.snippet.launch.flaskOld.label": "Python: Flask (0.10.x 以前)",
41+
"python.snippet.launch.flaskOld.description": "旧式の Flask アプリケーションをデバッグ",
42+
"python.snippet.launch.pyramid.label": "Python: Pyramid アプリケーション",
43+
"python.snippet.launch.pyramid.description": "Pyramid アプリケーションをデバッグ",
44+
"python.snippet.launch.watson.label": "Python: Watson アプリケーション",
45+
"python.snippet.launch.watson.description": "Watson アプリケーションをデバッグ",
46+
"python.snippet.launch.attach.label": "Python: アタッチ",
47+
"python.snippet.launch.attach.description": "リモートデバッグのためにデバッガをアタッチ",
48+
"python.snippet.launch.scrapy.label": "Python: Scrapy",
49+
"python.snippet.launch.scrapy.description": "統合ターミナル/コンソールで Scrapy を実行"
50+
}

0 commit comments

Comments
 (0)