@@ -19,7 +19,7 @@ msgid ""
1919msgstr ""
2020"Project-Id-Version :Python 3.8\n "
2121"Report-Msgid-Bugs-To :\n "
22- "POT-Creation-Date :2020-02-09 12:40 +0000\n "
22+ "POT-Creation-Date :2020-04-03 13:23 +0000\n "
2323"PO-Revision-Date :2017-02-16 23:34+0000\n "
2424"Last-Translator :tomo, 2019\n "
2525"Language-Team :Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
@@ -144,7 +144,26 @@ msgstr ""
144144"Windows でもシンボリックリンクはサポートされていますが、シンボリックリンクを使うのは推奨されません。\n"
145145"特に注目すべきなのは、ファイルエクスプローラ上で ``python.exe`` をダブルクリックすると、シンボリックリンクを貪欲に解決し仮想環境を無視するということです。"
146146
147- #: ../../using/venv-create.inc:81
147+ #: ../../using/venv-create.inc:82
148+ msgid ""
149+ "On Microsoft Windows, it may be required to enable the ``Activate.ps1`` "
150+ "script by setting the execution policy for the user. You can do this by "
151+ "issuing the following PowerShell command:"
152+ msgstr ""
153+
154+ #: ../../using/venv-create.inc:86
155+ msgid ""
156+ "PS C:\\ > Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope "
157+ "CurrentUser"
158+ msgstr ""
159+
160+ #: ../../using/venv-create.inc:88
161+ msgid ""
162+ "See `About Execution Policies "
163+ "<ttps:/go.microsoft.com/fwlink/?LinkID=135170>`_ for more information."
164+ msgstr ""
165+
166+ #: ../../using/venv-create.inc:92
148167msgid ""
149168"The created ``pyvenv.cfg`` file also includes the ``include-system-site-"
150169"packages`` key, set to ``true`` if ``venv`` is run with the ``--system-site-"
@@ -154,22 +173,22 @@ msgstr ""
154173"``venv`` が ``--system-site-packages`` オプションをつけて実行されたなら ``true`` で、そうでなければ "
155174"``false`` です。"
156175
157- #: ../../using/venv-create.inc:85
176+ #: ../../using/venv-create.inc:96
158177msgid ""
159178"Unless the ``--without-pip`` option is given, :mod:`ensurepip` will be "
160179"invoked to bootstrap ``pip`` into the virtual environment."
161180msgstr ""
162181"``--without-pip`` オプションが与えられない限り、``pip`` を仮想環境でブートするために :mod:`ensurepip` "
163182"が呼ばれます。"
164183
165- #: ../../using/venv-create.inc:88
184+ #: ../../using/venv-create.inc:99
166185msgid ""
167186"Multiple paths can be given to ``venv``, in which case an identical virtual "
168187"environment will be created, according to the given options, at each "
169188"provided path."
170189msgstr "``venv`` には複数のパスを渡すことができ、その場合はそれぞれのパスに同一の仮想環境が作成されます。"
171190
172- #: ../../using/venv-create.inc:92
191+ #: ../../using/venv-create.inc:103
173192msgid ""
174193"Once a virtual environment has been created, it can be\" activated\" using a"
175194" script in the virtual environment's binary directory. The invocation of the"
@@ -179,75 +198,75 @@ msgstr ""
179198"仮想環境の作成が完了すれば、その仮想環境のバイナリディレクトリにあるスクリプトで\" 有効化\" できます。\n"
180199"スクリプトの呼び出し方はプラットフォーム固有です (`<venv>` の部分は、仮想環境があるディレクトリのパスに置き換える必要があります):"
181200
182- #: ../../using/venv-create.inc:98
201+ #: ../../using/venv-create.inc:109
183202msgid "Platform"
184203msgstr "プラットフォーム"
185204
186- #: ../../using/venv-create.inc:98
205+ #: ../../using/venv-create.inc:109
187206msgid "Shell"
188207msgstr "シェル"
189208
190- #: ../../using/venv-create.inc:98
209+ #: ../../using/venv-create.inc:109
191210msgid "Command to activate virtual environment"
192211msgstr "仮想環境を有効化するためのコマンド"
193212
194- #: ../../using/venv-create.inc:100
213+ #: ../../using/venv-create.inc:111
195214msgid "POSIX"
196215msgstr "POSIX"
197216
198- #: ../../using/venv-create.inc:100
217+ #: ../../using/venv-create.inc:111
199218msgid "bash/zsh"
200219msgstr "bash/zsh"
201220
202- #: ../../using/venv-create.inc:100
221+ #: ../../using/venv-create.inc:111
203222msgid "$ source <venv>/bin/activate"
204223msgstr "$ source <venv>/bin/activate"
205224
206- #: ../../using/venv-create.inc:102
225+ #: ../../using/venv-create.inc:113
207226msgid "fish"
208227msgstr "fish"
209228
210- #: ../../using/venv-create.inc:102
229+ #: ../../using/venv-create.inc:113
211230msgid "$ . <venv>/bin/activate.fish"
212231msgstr "$ . <venv>/bin/activate.fish"
213232
214- #: ../../using/venv-create.inc:104
233+ #: ../../using/venv-create.inc:115
215234msgid "csh/tcsh"
216235msgstr "csh/tcsh"
217236
218- #: ../../using/venv-create.inc:104
237+ #: ../../using/venv-create.inc:115
219238msgid "$ source <venv>/bin/activate.csh"
220239msgstr "$ source <venv>/bin/activate.csh"
221240
222- #: ../../using/venv-create.inc:106
241+ #: ../../using/venv-create.inc:117
223242msgid "PowerShell Core"
224243msgstr "PowerShell Core"
225244
226- #: ../../using/venv-create.inc:106
245+ #: ../../using/venv-create.inc:117
227246msgid "$ <venv>/bin/Activate.ps1"
228247msgstr "$ <venv>/bin/Activate.ps1"
229248
230- #: ../../using/venv-create.inc:108
249+ #: ../../using/venv-create.inc:119
231250msgid "Windows"
232251msgstr "Windows"
233252
234- #: ../../using/venv-create.inc:108
253+ #: ../../using/venv-create.inc:119
235254msgid "cmd.exe"
236255msgstr "cmd.exe"
237256
238- #: ../../using/venv-create.inc:108
257+ #: ../../using/venv-create.inc:119
239258msgid "C:\\\\ > <venv>\\\\ Scripts\\\\ activate.bat"
240259msgstr "C:\\\\ > <venv>\\\\ Scripts\\\\ activate.bat"
241260
242- #: ../../using/venv-create.inc:110
261+ #: ../../using/venv-create.inc:121
243262msgid "PowerShell"
244263msgstr "PowerShell"
245264
246- #: ../../using/venv-create.inc:110
265+ #: ../../using/venv-create.inc:121
247266msgid "PS C:\\\\ > <venv>\\\\ Scripts\\\\ Activate.ps1"
248267msgstr "PS C:\\\\ > <venv>\\\\ Scripts\\\\ Activate.ps1"
249268
250- #: ../../using/venv-create.inc:113
269+ #: ../../using/venv-create.inc:124
251270msgid ""
252271"You don't specifically *need* to activate an environment; activation just "
253272"prepends the virtual environment's binary directory to your path, so that "
@@ -260,7 +279,7 @@ msgstr ""
260279"有効化は仮想環境のバイナリディレクトリをパスの最初に加えて、\" python\" で仮想環境の Python インタプリタが呼び出されるようにし、フルパスを入力せずにインストールされたスクリプトを実行できるようにするだけです。\n"
261280"しかし、インストールされたすべてのスクリプトは有効化しなくても実行可能で、仮想環境の Python で自動的に実行されなければなりません。"
262281
263- #: ../../using/venv-create.inc:120
282+ #: ../../using/venv-create.inc:131
264283msgid ""
265284"You can deactivate a virtual environment by typing\" deactivate\" in your "
266285"shell. The exact mechanism is platform-specific and is an internal "
@@ -269,11 +288,11 @@ msgstr ""
269288"シェルで\" deactivate\" と入力することで仮想環境を無効化できます。\n"
270289"厳密な仕組みはプラットフォーム固有であり、内部の実装詳細です (たいていはスクリプトかシェル関数が使われます)。"
271290
272- #: ../../using/venv-create.inc:124
291+ #: ../../using/venv-create.inc:135
273292msgid "``fish`` and ``csh`` activation scripts."
274293msgstr "``fish`` および ``csh`` の有効化スクリプト。"
275294
276- #: ../../using/venv-create.inc:127
295+ #: ../../using/venv-create.inc:138
277296msgid ""
278297"PowerShell activation scripts installed under POSIX for PowerShell Core "
279298"support."