Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit567128f

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent26c67fd commit567128f

File tree

2 files changed

+34
-5
lines changed

2 files changed

+34
-5
lines changed

‎library/venv.po

Lines changed: 26 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,8 @@ msgid ""
141141
"particular note is that double-clicking ``python.exe`` in File Explorer will"
142142
" resolve the symlink eagerly and ignore the virtual environment."
143143
msgstr""
144+
"Windows でもシムリンクはサポートされていますが、シムリンクを使うのは推奨されません。\n"
145+
"特に注目すべきなのは、ファイルエクスプローラ上で ``python.exe`` をダブルクリックすると、シムリンクを貪欲に解決し仮想環境を無視するということです。"
144146

145147
#:../../using/venv-create.inc:80
146148
msgid""
@@ -256,6 +258,8 @@ msgid ""
256258
"shell. The exact mechanism is platform-specific and is an internal "
257259
"implementation detail (typically a script or shell function will be used)."
258260
msgstr""
261+
"シェルで\"deactivate\" と入力することで仮想環境を無効化できます。\n"
262+
"厳密な仕組みはプラットフォーム固有であり、内部の実装詳細です (たいていはスクリプトかシェル関数が使われます)。"
259263

260264
#:../../using/venv-create.inc:121
261265
msgid"``fish`` and ``csh`` activation scripts."
@@ -287,6 +291,8 @@ msgid ""
287291
" they install Python packages into the virtual environment without needing "
288292
"to be told to do so explicitly."
289293
msgstr""
294+
"setuptools_ や pip_ などの一般的なインストールツールは期待通りに仮想環境と連係します。\n"
295+
"言い換えると、仮想環境が有効なときには、 Python パッケージを仮想環境へインストールするのに、インストールツールへの明示的な指示は必要ありません。"
290296

291297
#:../../library/venv.rst:60
292298
msgid""
@@ -312,6 +318,8 @@ msgid ""
312318
"files to prevent projects being inadvertently installed outside of the "
313319
"virtual environment."
314320
msgstr""
321+
"仮想環境が有効なときに、不注意で仮想環境の外にプロジェクトがインストールされることを避けるために、インストールパスを変更するあらゆるオプションは "
322+
":mod:`distutils` の全ての設定ファイルによって無視されます。"
315323

316324
#:../../library/venv.rst:76
317325
msgid""
@@ -331,6 +339,12 @@ msgid ""
331339
"interpreter without there needing to be any reference to its virtual "
332340
"environment in ``PATH``."
333341
msgstr""
342+
"コマンドシェルで作業をしているとき、仮想環境の実行可能ファイルディレクトリにある ``activate`` スクリプト (正確なファイル名とそのファイルを使うコマンドはシェル依存です) を実行して、仮想環境を有効化できます。\n"
343+
"このスクリプトは仮想環境の実行可能ファイルのディレクトリを、実行中のシェルの ``PATH`` 環境変数の先頭に差し込みます。\n"
344+
"それ以外の状況では、仮想環境を有効化するための作業は必要無いはずです。仮想環境にインストールされたスクリプトには、仮想環境の Python インタプリタを指す\"shebang\" 行があります。\n"
345+
"これはつまり、スクリプトは ``PATH`` の値に関係無く、仮想環境のインタプリタで実行されるということです。\n"
346+
"Windows では、 Windows 用の Python ランチャがインストールされている場合は\"shebang\" 行の処理がサポートされています (この機能はバージョン 3.3 で Python に追加されました - 詳細は :pep:`397` を参照してください)。\n"
347+
"従って、インストールされたスクリプトを Windows のエクスプローラのウィンドウからダブルクリックすると、 ``PATH`` にその仮想環境への参照を持たせる必要無く、そのスクリプトが正しいインタープリタで実行されるはずです。"
334348

335349
#:../../library/venv.rst:96
336350
msgid"API"
@@ -371,7 +385,7 @@ msgstr "``clear`` -- 真偽値で、真の場合環境を作成する前に既
371385
msgid""
372386
"``symlinks`` -- a Boolean value indicating whether to attempt to symlink the"
373387
" Python binary rather than copying."
374-
msgstr""
388+
msgstr"``symlinks`` -- 真偽値で、Python のバイナリをコピーせずにシンボリックの作成を試みるかどうかを示します。"
375389

376390
#:../../library/venv.rst:120
377391
msgid""
@@ -412,7 +426,7 @@ msgstr "``prompt`` 引数が追加されました。"
412426
msgid""
413427
"Creators of third-party virtual environment tools will be free to use the "
414428
"provided :class:`EnvBuilder` class as a base class."
415-
msgstr""
429+
msgstr"サードパーティーの仮想環境ツールの作成者は、 :class:`EnvBuilder` を継承して使うことができます。"
416430

417431
#:../../library/venv.rst:141
418432
msgid"The returned env-builder is an object which has a method, ``create``:"
@@ -425,12 +439,14 @@ msgid ""
425439
"environment. The ``create`` method will either create the environment in "
426440
"the specified directory, or raise an appropriate exception."
427441
msgstr""
442+
"仮想環境を持つことになるターゲットディレクトリ (絶対パスあるいは現在のディレクトリからの相対パス) を指定し、仮想環境を作成します。\n"
443+
"``create`` メソッドは、指定されたディレクトリに仮想環境を構築するか、適切な例外を送出します。"
428444

429445
#:../../library/venv.rst:151
430446
msgid""
431447
"The ``create`` method of the :class:`EnvBuilder` class illustrates the hooks"
432448
" available for subclass customization::"
433-
msgstr""
449+
msgstr":class:`EnvBuilder` クラスの ``create`` メソッドは、サブクラスのカスタマイズに使えるフックを説明します::"
434450

435451
#:../../library/venv.rst:166
436452
msgid""
@@ -465,6 +481,8 @@ msgid ""
465481
"``python`` and ``python3`` will be created pointing to that executable, "
466482
"unless files with those names already exist."
467483
msgstr""
484+
"Python 実行ファイルのコピーまたはシンボリックリンクを仮想環境に作成します。\n"
485+
"POSIX システムで、特定の ``python3.x`` 実行ファイルが使われている場合、同じ名前のファイルが既に存在していない限り、 ``python`` および ``python3`` へのシンボリックリンクがその実行ファイルを指すように作成されます。"
468486

469487
#:../../library/venv.rst:191
470488
msgid""
@@ -486,13 +504,18 @@ msgid ""
486504
" the actual binaries. In 3.7.2 only :meth:`setup_python` does nothing unless"
487505
" running from a build in the source tree."
488506
msgstr""
507+
"Windows では、バイナリそのものをコピーするのではなく、``python[w].exe`` にリダイレクトを行うスクリプトを使うようになりました。\n"
508+
"3.7.2 でのみ、ソース群でビルドを実行しているのでなければ :meth:`setup_python` だけは何もしません。"
489509

490510
#:../../library/venv.rst:205
491511
msgid""
492512
"Windows copies the redirector scripts as part of :meth:`setup_python` "
493513
"instead of :meth:`setup_scripts`. This was not the case in 3.7.2. When using"
494514
" symlinks, the original executables will be linked."
495515
msgstr""
516+
"Windows では、 :meth:`setup_scripts` の代わりに :meth:`setup_python` の一部としてリダイレクトを行うスクリプトをコピーします。\n"
517+
"これは 3.7.2 には当てはまりません。\n"
518+
"シンボリックリンクを使ったときは、オリジナルの実行ファイルをコピーします。"
496519

497520
#:../../library/venv.rst:210
498521
msgid""

‎tutorial/interpreter.po

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
66
# Translators:
7-
# tomo, 2019
87
# Atsuo Ishimoto <atsuoishimoto@gmail.com>, 2019
8+
# tomo, 2019
99
#
1010
#,fuzzy
1111
msgid ""
@@ -14,7 +14,7 @@ msgstr ""
1414
"Report-Msgid-Bugs-To:\n"
1515
"POT-Creation-Date:2019-11-06 03:59+0000\n"
1616
"PO-Revision-Date:2019-09-01 02:41+0000\n"
17-
"Last-Translator:Atsuo Ishimoto <atsuoishimoto@gmail.com>, 2019\n"
17+
"Last-Translator:tomo, 2019\n"
1818
"Language-Team:Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
1919
"MIME-Version:1.0\n"
2020
"Content-Type:text/plain; charset=UTF-8\n"
@@ -84,6 +84,12 @@ msgid ""
8484
"echoed, command line editing isn't available; you'll only be able to use "
8585
"backspace to remove characters from the current line."
8686
msgstr""
87+
"`GNU Readline <https://tiswww.case.edu/php/chet/readline/rltop.html>`_ "
88+
"ライブラリをサポートしているシステム上では、対話的行編集やヒストリ置換、コード補完のインタプリタの行編集機能が利用できます。コマンドライン編集機能がサポートされているかを最も手っ取り早く調べる方法は、おそらく最初に表示された"
89+
" Python プロンプトに :kbd:`Control-P` "
90+
"を入力してみることでしょう。ビープ音が鳴るなら、コマンドライン編集機能があります。編集キーについての解説は付録 :ref:`tut-"
91+
"interacting` を参照してください。何も起こらないように見えるか、 ``^P`` "
92+
"がエコーバックされるなら、コマンドライン編集機能は利用できません。この場合、現在編集中の行から文字を削除するにはバックスペースを使うしかありません。"
8793

8894
#:../../tutorial/interpreter.rst:46
8995
msgid""

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp