@@ -18,7 +18,7 @@ msgid ""
18
18
msgstr ""
19
19
"Project-Id-Version : Python 3.9\n "
20
20
"Report-Msgid-Bugs-To : \n "
21
- "POT-Creation-Date : 2021-01-01 05:02 +0000\n "
21
+ "POT-Creation-Date : 2021-05-05 06:14 +0000\n "
22
22
"PO-Revision-Date : 2017-02-16 23:03+0000\n "
23
23
"Last-Translator : Yusuke Miyazaki <miyazaki.dev@gmail.com>, 2020\n "
24
24
"Language-Team : Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
@@ -264,14 +264,13 @@ msgstr "*force* が真の場合、タイムスタンプが最新のであって
264
264
265
265
#: ../../library/compileall.rst:169
266
266
msgid ""
267
- "If *rx* is given, its search method is called on the complete path to each "
268
- "file considered for compilation, and if it returns a true value, the file is"
269
- " skipped."
267
+ "If *rx* is given, its ``search`` method is called on the complete path to "
268
+ "each file considered for compilation, and if it returns a true value, the "
269
+ "file is skipped. This can be used to exclude files matching a regular "
270
+ "expression, given as a :ref:`re.Pattern <re-objects>` object."
270
271
msgstr ""
271
- "*rx* "
272
- "が与えられた場合、コンパイル候補のそれぞれのファイルのフルパスに対して検索メソッドが呼び出され、それが真値を返したら、そのファイルは除外されます。"
273
272
274
- #: ../../library/compileall.rst:173 ../../library/compileall.rst:249
273
+ #: ../../library/compileall.rst:174 ../../library/compileall.rst:251
275
274
msgid ""
276
275
"If *quiet* is ``False`` or ``0`` (the default), the filenames and other "
277
276
"information are printed to standard out. Set to ``1``, only errors are "
@@ -281,7 +280,7 @@ msgstr ""
281
280
"``1`` の場合エラーのみが表示されます。\n"
282
281
"``2`` の場合出力はすべて抑制されます。"
283
282
284
- #: ../../library/compileall.rst:177 ../../library/compileall.rst:253
283
+ #: ../../library/compileall.rst:178 ../../library/compileall.rst:255
285
284
msgid ""
286
285
"If *legacy* is true, byte-code files are written to their legacy locations "
287
286
"and names, which may overwrite byte-code files created by another version of"
@@ -293,15 +292,15 @@ msgstr ""
293
292
"によって作られたバイトコードファイルを上書きする可能性があります。デフォルトは :pep:`3147` で決められた場所と名前を使い、複数のバージョンの"
294
293
" Python のバイトコードファイルが共存できるようにします。"
295
294
296
- #: ../../library/compileall.rst:183 ../../library/compileall.rst:259
295
+ #: ../../library/compileall.rst:184 ../../library/compileall.rst:261
297
296
msgid ""
298
297
"*optimize* specifies the optimization level for the compiler. It is passed "
299
298
"to the built-in :func:`compile` function. Accepts also a sequence of "
300
299
"optimization levels which lead to multiple compilations of one :file:`.py` "
301
300
"file in one call."
302
301
msgstr ""
303
302
304
- #: ../../library/compileall.rst:187
303
+ #: ../../library/compileall.rst:188
305
304
msgid ""
306
305
"The argument *workers* specifies how many workers are used to compile files "
307
306
"in parallel. The default is to not use multiple workers. If the platform "
@@ -311,7 +310,7 @@ msgid ""
311
310
":exc:`ValueError` will be raised."
312
311
msgstr ""
313
312
314
- #: ../../library/compileall.rst:194 ../../library/compileall.rst:263
313
+ #: ../../library/compileall.rst:195 ../../library/compileall.rst:265
315
314
msgid ""
316
315
"*invalidation_mode* should be a member of the "
317
316
":class:`py_compile.PycInvalidationMode` enum and controls how the generated "
@@ -320,74 +319,74 @@ msgstr ""
320
319
"*invalidation_mode* は、:class:`py_compile.PycInvalidationMode` "
321
320
"のメンバーでなければならず、生成されたpycファイルを実行時に無効化する方法を制御します。"
322
321
323
- #: ../../library/compileall.rst:198 ../../library/compileall.rst:267
322
+ #: ../../library/compileall.rst:199 ../../library/compileall.rst:269
324
323
msgid ""
325
324
"The *stripdir*, *prependdir* and *limit_sl_dest* arguments correspond to the"
326
325
" ``-s``, ``-p`` and ``-e`` options described above. They may be specified as"
327
326
" ``str``, ``bytes`` or :py:class:`os.PathLike`."
328
327
msgstr ""
329
328
330
- #: ../../library/compileall.rst:202 ../../library/compileall.rst:271
329
+ #: ../../library/compileall.rst:203 ../../library/compileall.rst:273
331
330
msgid ""
332
331
"If *hardlink_dupes* is true and two ``.pyc`` files with different "
333
332
"optimization level have the same content, use hard links to consolidate "
334
333
"duplicate files."
335
334
msgstr ""
336
335
337
- #: ../../library/compileall.rst:205 ../../library/compileall.rst:302
336
+ #: ../../library/compileall.rst:206 ../../library/compileall.rst:304
338
337
msgid "Added the *legacy* and *optimize* parameter."
339
338
msgstr "*legacy* と *optimize* 引数が追加されました。"
340
339
341
- #: ../../library/compileall.rst:208
340
+ #: ../../library/compileall.rst:209
342
341
msgid "Added the *workers* parameter."
343
342
msgstr "``workers`` パラメータが追加されました。"
344
343
345
- #: ../../library/compileall.rst:211 ../../library/compileall.rst:276
346
- #: ../../library/compileall.rst:305
344
+ #: ../../library/compileall.rst:212 ../../library/compileall.rst:278
345
+ #: ../../library/compileall.rst:307
347
346
msgid "*quiet* parameter was changed to a multilevel value."
348
347
msgstr "*quiet* 引数が複数のレベルの値に変更されました。"
349
348
350
- #: ../../library/compileall.rst:214 ../../library/compileall.rst:279
351
- #: ../../library/compileall.rst:308
349
+ #: ../../library/compileall.rst:215 ../../library/compileall.rst:281
350
+ #: ../../library/compileall.rst:310
352
351
msgid ""
353
352
"The *legacy* parameter only writes out ``.pyc`` files, not ``.pyo`` files no"
354
353
" matter what the value of *optimize* is."
355
354
msgstr ""
356
355
"*optimize* の値に関わらず、*legacy* 引数は ``.pyc`` ファイルのみを書き出し、``.pyo`` "
357
356
"ファイルを書き出さないようになりました。"
358
357
359
- #: ../../library/compileall.rst:218
358
+ #: ../../library/compileall.rst:219
360
359
msgid "Accepts a :term:`path-like object`."
361
360
msgstr ":term:`path-like object` を受け取るようになりました。"
362
361
363
- #: ../../library/compileall.rst:221 ../../library/compileall.rst:283
364
- #: ../../library/compileall.rst:312
362
+ #: ../../library/compileall.rst:222 ../../library/compileall.rst:285
363
+ #: ../../library/compileall.rst:314
365
364
msgid "The *invalidation_mode* parameter was added."
366
365
msgstr "*invalidation_mode* 引数を追加しました。"
367
366
368
- #: ../../library/compileall.rst:224 ../../library/compileall.rst:286
369
- #: ../../library/compileall.rst:315
367
+ #: ../../library/compileall.rst:225 ../../library/compileall.rst:288
368
+ #: ../../library/compileall.rst:317
370
369
msgid "The *invalidation_mode* parameter's default value is updated to None."
371
370
msgstr "*invalidation_mode* 引数のデフォルト値が None に変更されました。"
372
371
373
- #: ../../library/compileall.rst:227
372
+ #: ../../library/compileall.rst:228
374
373
msgid "Setting *workers* to 0 now chooses the optimal number of cores."
375
374
msgstr ""
376
375
377
- #: ../../library/compileall.rst:230
376
+ #: ../../library/compileall.rst:231
378
377
msgid ""
379
378
"Added *stripdir*, *prependdir*, *limit_sl_dest* and *hardlink_dupes* "
380
379
"arguments. Default value of *maxlevels* was changed from ``10`` to "
381
380
"``sys.getrecursionlimit()``"
382
381
msgstr ""
383
382
384
- #: ../../library/compileall.rst:236
383
+ #: ../../library/compileall.rst:237
385
384
msgid ""
386
385
"Compile the file with path *fullname*. Return a true value if the file "
387
386
"compiled successfully, and a false value otherwise."
388
387
msgstr "パス *fullname* のファイルをコンパイルします。コンパイルが成功すれば真を、そうでなければ偽を返します。"
389
388
390
- #: ../../library/compileall.rst:239
389
+ #: ../../library/compileall.rst:240
391
390
msgid ""
392
391
"If *ddir* is given, it is prepended to the path to the file being compiled "
393
392
"for use in compilation time tracebacks, and is also compiled in to the byte-"
@@ -398,25 +397,24 @@ msgstr ""
398
397
"*ddir* "
399
398
"が与えられた場合、コンパイルされるファイルのパスの先頭にそのディレクトリを追加します。これはコンパイル時トレースバックに使われ、バイトコードファイルが実行される時点でソースファイルが存在しない場合に、トレースバックやその他のメッセージに使われるバイトコードファイルにもコンパイルされます。"
400
399
401
- #: ../../library/compileall.rst:245
400
+ #: ../../library/compileall.rst:246
402
401
msgid ""
403
- "If *rx* is given, its search method is passed the full path name to the file"
404
- " being compiled, and if it returns a true value, the file is not compiled "
405
- "and ``True`` is returned."
402
+ "If *rx* is given, its ``search`` method is passed the full path name to the "
403
+ "file being compiled, and if it returns a true value, the file is not "
404
+ "compiled and ``True`` is returned. This can be used to exclude files "
405
+ "matching a regular expression, given as a :ref:`re.Pattern <re-objects>` "
406
+ "object."
406
407
msgstr ""
407
- "*rx* "
408
- "が与えられた場合、コンパイル候補のファイルのフルパスに対して検索メソッドが呼び出され、それが真値を返したら、ファイルはコンパイルされず、``True``"
409
- " が返されます。"
410
408
411
- #: ../../library/compileall.rst:289
409
+ #: ../../library/compileall.rst:291
412
410
msgid ""
413
411
"Added *stripdir*, *prependdir*, *limit_sl_dest* and *hardlink_dupes* "
414
412
"arguments."
415
413
msgstr ""
416
414
"引数 *stripdir* 、 *prependdir* 、 *limit_sl_dest* 、および *hardlink_dupes* "
417
415
"を追加しました。"
418
416
419
- #: ../../library/compileall.rst:294
417
+ #: ../../library/compileall.rst:296
420
418
msgid ""
421
419
"Byte-compile all the :file:`.py` files found along ``sys.path``. Return a "
422
420
"true value if all the files compiled successfully, and a false value "
@@ -425,7 +423,7 @@ msgstr ""
425
423
"``sys.path`` からたどって見つけたすべての :file:`.py` ファイルをバイトコンパイルします。\n"
426
424
"すべてのファイルを問題なくコンパイルできたときに真を、それ以外のときに偽を返します。"
427
425
428
- #: ../../library/compileall.rst:297
426
+ #: ../../library/compileall.rst:299
429
427
msgid ""
430
428
"If *skip_curdir* is true (the default), the current directory is not "
431
429
"included in the search. All other parameters are passed to the "
@@ -436,17 +434,17 @@ msgstr ""
436
434
"それ以外のすべての引数は :func:`compile_dir` 関数に渡されます。\n"
437
435
"その他の compile 関数群と異なり、 ``maxlevels`` のデフォルトが ``0`` になっていることに注意してください。"
438
436
439
- #: ../../library/compileall.rst:318
437
+ #: ../../library/compileall.rst:320
440
438
msgid ""
441
439
"To force a recompile of all the :file:`.py` files in the :file:`Lib/` "
442
440
"subdirectory and all its subdirectories::"
443
441
msgstr ""
444
442
":file:`Lib/` ディレクトリ以下にある全ての :file:`.py` ファイルを強制的に再コンパイルするには、以下のようにします::"
445
443
446
- #: ../../library/compileall.rst:335
444
+ #: ../../library/compileall.rst:337
447
445
msgid "Module :mod:`py_compile`"
448
446
msgstr "Module :mod:`py_compile`"
449
447
450
- #: ../../library/compileall.rst:336
448
+ #: ../../library/compileall.rst:338
451
449
msgid "Byte-compile a single source file."
452
450
msgstr "一つのソースファイルをバイトコンパイルします。"
0 commit comments