@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version : Python 3.6\n "
1313"Report-Msgid-Bugs-To : \n "
14- "POT-Creation-Date : 2018-09-13 14:22 +0900\n "
14+ "POT-Creation-Date : 2018-11-12 15:13 +0900\n "
1515"PO-Revision-Date : 2018-06-29 17:39+0000\n "
1616"Last-Translator : tomo🐧, 2018\n "
1717"Language-Team : Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
@@ -60,15 +60,13 @@ msgstr ""
6060msgid "Creating virtual environments"
6161msgstr "仮想環境の作成"
6262
63- #: ../../using/venv-create.inc <included from
64- #: /home/travis/build/python/cpython-doc-catalog/Doc/library/venv.rst>:1
63+ #: ../../using/venv-create.inc:1
6564msgid ""
6665"Creation of :ref:`virtual environments <venv-def>` is done by executing the "
6766"command ``venv``::"
6867msgstr ":ref:`仮想環境 <venv-def>` を作成するには ``venv`` コマンドを実行します::"
6968
70- #: ../../using/venv-create.inc <included from
71- #: /home/travis/build/python/cpython-doc-catalog/Doc/library/venv.rst>:6
69+ #: ../../using/venv-create.inc:6
7270msgid ""
7371"Running this command creates the target directory (creating any parent "
7472"directories that don't exist already) and places a ``pyvenv.cfg`` file in it"
@@ -86,8 +84,7 @@ msgstr ""
8684"(Windows では ``Lib\\ site-packages``) サブディレクトリも (最初は空の状態で) "
8785"作成します。指定したディレクトリが存在している場合は、それが再利用されます。"
8886
89- #: ../../using/venv-create.inc <included from
90- #: /home/travis/build/python/cpython-doc-catalog/Doc/library/venv.rst>:15
87+ #: ../../using/venv-create.inc:15
9188msgid ""
9289"``pyvenv`` was the recommended tool for creating virtual environments for "
9390"Python 3.3 and 3.4, and is `deprecated in Python 3.6 "
@@ -96,58 +93,50 @@ msgstr ""
9693"Python 3.3 と 3.4 では、仮想環境の作成に推奨していたツールは ``pyvenv`` でしたが、`Python 3.6では非推奨です "
9794"<https://docs.python.org/dev/whatsnew/3.6.html#deprecated-features>`_。"
9895
99- #: ../../using/venv-create.inc <included from
100- #: /home/travis/build/python/cpython-doc-catalog/Doc/library/venv.rst>:20
96+ #: ../../using/venv-create.inc:20
10197msgid ""
10298"The use of ``venv`` is now recommended for creating virtual environments."
10399msgstr "仮想環境の作成には、 ``venv`` の使用をお勧めします。"
104100
105- #: ../../using/venv-create.inc <included from
106- #: /home/travis/build/python/cpython-doc-catalog/Doc/library/venv.rst>:25
101+ #: ../../using/venv-create.inc:25
107102msgid ""
108103"`Python Packaging User Guide: Creating and using virtual environments "
109104"<https://packaging.python.org/installing/#creating-virtual-environments>`__"
110105msgstr ""
111106"`Python Packaging User Guide: Creating and using virtual environments "
112107"<https://packaging.python.org/installing/#creating-virtual-environments>`__"
113108
114- #: ../../using/venv-create.inc <included from
115- #: /home/travis/build/python/cpython-doc-catalog/Doc/library/venv.rst>:30
109+ #: ../../using/venv-create.inc:30
116110msgid "On Windows, invoke the ``venv`` command as follows::"
117111msgstr "Windows では、 ``venv`` コマンドは次のように実行します::"
118112
119- #: ../../using/venv-create.inc <included from
120- #: /home/travis/build/python/cpython-doc-catalog/Doc/library/venv.rst>:34
113+ #: ../../using/venv-create.inc:34
121114msgid ""
122115"Alternatively, if you configured the ``PATH`` and ``PATHEXT`` variables for "
123116"your :ref:`Python installation <using-on-windows>`::"
124117msgstr ""
125118"あるいは、 :ref:`インストールされている Python <using-on-windows>` のために ``PATH`` 変数や "
126119"``PATHEXT`` 変数が設定してある場合は次のコマンドでも実行できます::"
127120
128- #: ../../using/venv-create.inc <included from
129- #: /home/travis/build/python/cpython-doc-catalog/Doc/library/venv.rst>:39
121+ #: ../../using/venv-create.inc:39
130122msgid "The command, if run with ``-h``, will show the available options::"
131123msgstr "このコマンドを ``-h`` をつけて実行すると利用できるオプションが表示されます::"
132124
133- #: ../../using/venv-create.inc <included from
134- #: /home/travis/build/python/cpython-doc-catalog/Doc/library/venv.rst>:69
125+ #: ../../using/venv-create.inc:69
135126msgid ""
136127"Installs pip by default, added the ``--without-pip`` and ``--copies`` "
137128"options"
138129msgstr "デフォルトで pip をインストールします。``--without-pip`` と ``--copies`` オプションを追加しました。"
139130
140- #: ../../using/venv-create.inc <included from
141- #: /home/travis/build/python/cpython-doc-catalog/Doc/library/venv.rst>:73
131+ #: ../../using/venv-create.inc:73
142132msgid ""
143133"In earlier versions, if the target directory already existed, an error was "
144134"raised, unless the ``--clear`` or ``--upgrade`` option was provided."
145135msgstr ""
146136"以前のバージョンでは、対象となるディレクトリが既に存在していた場合は、 ``--clear`` オプションや ``--upgrade`` "
147137"オプションを付けない限りはエラーを送出していました。"
148138
149- #: ../../using/venv-create.inc <included from
150- #: /home/travis/build/python/cpython-doc-catalog/Doc/library/venv.rst>:77
139+ #: ../../using/venv-create.inc:77
151140msgid ""
152141"The created ``pyvenv.cfg`` file also includes the ``include-system-site-"
153142"packages`` key, set to ``true`` if ``venv`` is run with the ``--system-site-"
@@ -157,25 +146,22 @@ msgstr ""
157146"``venv`` が ``--system-site-packages`` オプションをつけて実行されたなら ``true`` で、そうでなければ "
158147"``false`` です。"
159148
160- #: ../../using/venv-create.inc <included from
161- #: /home/travis/build/python/cpython-doc-catalog/Doc/library/venv.rst>:81
149+ #: ../../using/venv-create.inc:81
162150msgid ""
163151"Unless the ``--without-pip`` option is given, :mod:`ensurepip` will be "
164152"invoked to bootstrap ``pip`` into the virtual environment."
165153msgstr ""
166154"``--without-pip`` オプションが与えられない限り、``pip`` を仮想環境でブートするために :mod:`ensurepip` "
167155"が呼ばれます。"
168156
169- #: ../../using/venv-create.inc <included from
170- #: /home/travis/build/python/cpython-doc-catalog/Doc/library/venv.rst>:84
157+ #: ../../using/venv-create.inc:84
171158msgid ""
172159"Multiple paths can be given to ``venv``, in which case an identical virtual "
173160"environment will be created, according to the given options, at each "
174161"provided path."
175162msgstr "``venv`` には複数のパスを渡すことができ、その場合はそれぞれのパスに同一の仮想環境が作成されます。"
176163
177- #: ../../using/venv-create.inc <included from
178- #: /home/travis/build/python/cpython-doc-catalog/Doc/library/venv.rst>:88
164+ #: ../../using/venv-create.inc:88
179165msgid ""
180166"Once a virtual environment has been created, it can be \" activated\" using a"
181167" script in the virtual environment's binary directory. The invocation of the"
@@ -184,83 +170,67 @@ msgstr ""
184170"仮想環境の作成が完了すれば、その仮想環境のバイナリディレクトリにあるスクリプトで \" 有効化\" できます。\n"
185171"スクリプトの呼び出し方はプラットフォーム固有です:"
186172
187- #: ../../using/venv-create.inc <included from
188- #: /home/travis/build/python/cpython-doc-catalog/Doc/library/venv.rst>:93
173+ #: ../../using/venv-create.inc:93
189174msgid "Platform"
190175msgstr "プラットフォーム"
191176
192- #: ../../using/venv-create.inc <included from
193- #: /home/travis/build/python/cpython-doc-catalog/Doc/library/venv.rst>:93
177+ #: ../../using/venv-create.inc:93
194178msgid "Shell"
195179msgstr "シェル"
196180
197- #: ../../using/venv-create.inc <included from
198- #: /home/travis/build/python/cpython-doc-catalog/Doc/library/venv.rst>:93
181+ #: ../../using/venv-create.inc:93
199182msgid "Command to activate virtual environment"
200183msgstr "仮想環境を有効化するためのコマンド"
201184
202- #: ../../using/venv-create.inc <included from
203- #: /home/travis/build/python/cpython-doc-catalog/Doc/library/venv.rst>:95
185+ #: ../../using/venv-create.inc:95
204186msgid "Posix"
205187msgstr "Posix"
206188
207- #: ../../using/venv-create.inc <included from
208- #: /home/travis/build/python/cpython-doc-catalog/Doc/library/venv.rst>:95
189+ #: ../../using/venv-create.inc:95
209190msgid "bash/zsh"
210191msgstr "bash/zsh"
211192
212- #: ../../using/venv-create.inc <included from
213- #: /home/travis/build/python/cpython-doc-catalog/Doc/library/venv.rst>:95
193+ #: ../../using/venv-create.inc:95
214194msgid "$ source <venv>/bin/activate"
215195msgstr "$ source <venv>/bin/activate"
216196
217- #: ../../using/venv-create.inc <included from
218- #: /home/travis/build/python/cpython-doc-catalog/Doc/library/venv.rst>:97
197+ #: ../../using/venv-create.inc:97
219198msgid "fish"
220199msgstr "fish"
221200
222- #: ../../using/venv-create.inc <included from
223- #: /home/travis/build/python/cpython-doc-catalog/Doc/library/venv.rst>:97
201+ #: ../../using/venv-create.inc:97
224202msgid "$ . <venv>/bin/activate.fish"
225203msgstr "$ . <venv>/bin/activate.fish"
226204
227- #: ../../using/venv-create.inc <included from
228- #: /home/travis/build/python/cpython-doc-catalog/Doc/library/venv.rst>:99
205+ #: ../../using/venv-create.inc:99
229206msgid "csh/tcsh"
230207msgstr "csh/tcsh"
231208
232- #: ../../using/venv-create.inc <included from
233- #: /home/travis/build/python/cpython-doc-catalog/Doc/library/venv.rst>:99
209+ #: ../../using/venv-create.inc:99
234210msgid "$ source <venv>/bin/activate.csh"
235211msgstr "$ source <venv>/bin/activate.csh"
236212
237- #: ../../using/venv-create.inc <included from
238- #: /home/travis/build/python/cpython-doc-catalog/Doc/library/venv.rst>:101
213+ #: ../../using/venv-create.inc:101
239214msgid "Windows"
240215msgstr "Windows"
241216
242- #: ../../using/venv-create.inc <included from
243- #: /home/travis/build/python/cpython-doc-catalog/Doc/library/venv.rst>:101
217+ #: ../../using/venv-create.inc:101
244218msgid "cmd.exe"
245219msgstr "cmd.exe"
246220
247- #: ../../using/venv-create.inc <included from
248- #: /home/travis/build/python/cpython-doc-catalog/Doc/library/venv.rst>:101
221+ #: ../../using/venv-create.inc:101
249222msgid "C:\\\\ > <venv>\\\\ Scripts\\\\ activate.bat"
250223msgstr "C:\\\\ > <venv>\\\\ Scripts\\\\ activate.bat"
251224
252- #: ../../using/venv-create.inc <included from
253- #: /home/travis/build/python/cpython-doc-catalog/Doc/library/venv.rst>:103
225+ #: ../../using/venv-create.inc:103
254226msgid "PowerShell"
255227msgstr "PowerShell"
256228
257- #: ../../using/venv-create.inc <included from
258- #: /home/travis/build/python/cpython-doc-catalog/Doc/library/venv.rst>:103
229+ #: ../../using/venv-create.inc:103
259230msgid "PS C:\\\\ > <venv>\\\\ Scripts\\\\ Activate.ps1"
260231msgstr "PS C:\\\\ > <venv>\\\\ Scripts\\\\ Activate.ps1"
261232
262- #: ../../using/venv-create.inc <included from
263- #: /home/travis/build/python/cpython-doc-catalog/Doc/library/venv.rst>:106
233+ #: ../../using/venv-create.inc:106
264234msgid ""
265235"You don't specifically *need* to activate an environment; activation just "
266236"prepends the virtual environment's binary directory to your path, so that "
@@ -273,8 +243,7 @@ msgstr ""
273243"有効化は仮想環境のバイナリディレクトリをパスの最初に加えて、 \" python\" で仮想環境の Python インタプリタが呼び出されるようにし、フルパスを入力せずにインストールされたスクリプトを実行できるようにするだけです。\n"
274244"しかし、インストールされたすべてのスクリプトは有効化しなくても実行可能で、仮想環境の Python で自動的に実行されなければなりません。"
275245
276- #: ../../using/venv-create.inc <included from
277- #: /home/travis/build/python/cpython-doc-catalog/Doc/library/venv.rst>:113
246+ #: ../../using/venv-create.inc:113
278247msgid ""
279248"You can deactivate a virtual environment by typing \" deactivate\" in your "
280249"shell. The exact mechanism is platform-specific: for example, the Bash "
@@ -286,8 +255,7 @@ msgstr ""
286255"厳密な仕組みはプラットフォーム固有です。\n"
287256"例えば、Bash の有効化スクリプトは \" deactivate\" 関数を定義している一方、 Windows では、仮想環境が作成されるときにインストールされる ``deactivate.bat`` と ``Deactivate.ps1`` という個別のスクリプトがあります。"
288257
289- #: ../../using/venv-create.inc <included from
290- #: /home/travis/build/python/cpython-doc-catalog/Doc/library/venv.rst>:119
258+ #: ../../using/venv-create.inc:119
291259msgid "``fish`` and ``csh`` activation scripts."
292260msgstr "``fish`` および ``csh`` 有効化スクリプト。"
293261
0 commit comments