Skip to content

Commit e55e77c

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent 8bb4c6a commit e55e77c

File tree

3 files changed

+4166
-4157
lines changed

3 files changed

+4166
-4157
lines changed

library/asyncio-task.po

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -642,34 +642,34 @@ msgstr "このドキュメントの :ref:`asyncio-multithreading` 節を参照
642642
msgid ""
643643
"Unlike other asyncio functions this function requires the *loop* argument to"
644644
" be passed explicitly."
645-
msgstr ""
645+
msgstr "他の asyncio 関数とは異なり、この関数は明示的に渡される *loop* 引数を必要とします。"
646646

647647
#: ../../library/asyncio-task.rst:614
648648
msgid "Introspection"
649-
msgstr ""
649+
msgstr "イントロスペクション"
650650

651651
#: ../../library/asyncio-task.rst:619
652652
msgid ""
653653
"Return the currently running :class:`Task` instance, or ``None`` if no task "
654654
"is running."
655-
msgstr ""
655+
msgstr "現在実行中の :class:`Task` インスタンスを返します。実行中の Task が無い場合は ``None`` を返します。"
656656

657657
#: ../../library/asyncio-task.rst:622
658658
msgid ""
659659
"If *loop* is ``None`` :func:`get_running_loop` is used to get the current "
660660
"loop."
661-
msgstr ""
661+
msgstr "*loop* が ``None`` の場合、 :func:`get_running_loop` が現在のループを取得するのに使われます。"
662662

663663
#: ../../library/asyncio-task.rst:630
664664
msgid ""
665665
"Return a set of not yet finished :class:`Task` objects run by the loop."
666-
msgstr ""
666+
msgstr "ループで実行された :class:`Task` オブジェクトでまだ完了していないものの集合を返します。"
667667

668668
#: ../../library/asyncio-task.rst:633
669669
msgid ""
670670
"If *loop* is ``None``, :func:`get_running_loop` is used for getting current "
671671
"loop."
672-
msgstr ""
672+
msgstr "*loop* が ``None`` の場合、 :func:`get_running_loop` は現在のループを取得するのに使われます。"
673673

674674
#: ../../library/asyncio-task.rst:640
675675
msgid "Task Object"

library/concurrent.futures.po

Lines changed: 54 additions & 65 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ msgid ""
1818
msgstr ""
1919
"Project-Id-Version: Python 3.7\n"
2020
"Report-Msgid-Bugs-To: \n"
21-
"POT-Creation-Date: 2019-05-30 11:32+0900\n"
21+
"POT-Creation-Date: 2019-06-15 11:43+0900\n"
2222
"PO-Revision-Date: 2017-02-16 23:03+0000\n"
2323
"Last-Translator: Osamu NAKAMURA, 2017\n"
2424
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -324,29 +324,28 @@ msgstr ""
324324

325325
#: ../../library/concurrent.futures.rst:296
326326
msgid ""
327-
"Attempt to cancel the call. If the call is currently being executed and "
328-
"cannot be cancelled then the method will return ``False``, otherwise the "
329-
"call will be cancelled and the method will return ``True``."
327+
"Attempt to cancel the call. If the call is currently being executed or "
328+
"finished running and cannot be cancelled then the method will return "
329+
"``False``, otherwise the call will be cancelled and the method will return "
330+
"``True``."
330331
msgstr ""
331-
"呼び出しのキャンセルを試みます。もし呼び出しが現在実行中でキャンセルすることができない場合、メソッドは ``False`` "
332-
"を返します。そうでない場合呼び出しはキャンセルされ、``True`` を返します。"
333332

334-
#: ../../library/concurrent.futures.rst:302
333+
#: ../../library/concurrent.futures.rst:303
335334
msgid "Return ``True`` if the call was successfully cancelled."
336335
msgstr "呼び出しが正常にキャンセルされた場合 ``True`` を返します。"
337336

338-
#: ../../library/concurrent.futures.rst:306
337+
#: ../../library/concurrent.futures.rst:307
339338
msgid ""
340339
"Return ``True`` if the call is currently being executed and cannot be "
341340
"cancelled."
342341
msgstr "現在呼び出しが実行中でキャンセルできない場合 ``True`` を返します。"
343342

344-
#: ../../library/concurrent.futures.rst:311
343+
#: ../../library/concurrent.futures.rst:312
345344
msgid ""
346345
"Return ``True`` if the call was successfully cancelled or finished running."
347346
msgstr "呼び出しが正常にキャンセルされたか終了した場合 ``True`` を返します。"
348347

349-
#: ../../library/concurrent.futures.rst:316
348+
#: ../../library/concurrent.futures.rst:317
350349
msgid ""
351350
"Return the value returned by the call. If the call hasn't yet completed then"
352351
" this method will wait up to *timeout* seconds. If the call hasn't "
@@ -360,18 +359,18 @@ msgstr ""
360359
"*timeout* にはintかfloatを指定できます。*timeout* が指定されていないか、 ``None`` "
361360
"である場合、待機時間に制限はありません。"
362361

363-
#: ../../library/concurrent.futures.rst:323
364-
#: ../../library/concurrent.futures.rst:337
362+
#: ../../library/concurrent.futures.rst:324
363+
#: ../../library/concurrent.futures.rst:338
365364
msgid ""
366365
"If the future is cancelled before completing then :exc:`.CancelledError` "
367366
"will be raised."
368367
msgstr "future が完了する前にキャンセルされた場合 :exc:`CancelledError` が送出されます。"
369368

370-
#: ../../library/concurrent.futures.rst:326
369+
#: ../../library/concurrent.futures.rst:327
371370
msgid "If the call raised, this method will raise the same exception."
372371
msgstr "呼び出しが例外を送出した場合、このメソッドは同じ例外を送出します。"
373372

374-
#: ../../library/concurrent.futures.rst:330
373+
#: ../../library/concurrent.futures.rst:331
375374
msgid ""
376375
"Return the exception raised by the call. If the call hasn't yet completed "
377376
"then this method will wait up to *timeout* seconds. If the call hasn't "
@@ -385,11 +384,11 @@ msgstr ""
385384
"*timeout* にはintかfloatを指定できます。 *timeout* が指定されていないか、 ``None`` "
386385
"である場合、待機時間に制限はありません。"
387386

388-
#: ../../library/concurrent.futures.rst:340
387+
#: ../../library/concurrent.futures.rst:341
389388
msgid "If the call completed without raising, ``None`` is returned."
390389
msgstr "呼び出しが例外を送出することなく完了した場合、``None`` を返します。"
391390

392-
#: ../../library/concurrent.futures.rst:344
391+
#: ../../library/concurrent.futures.rst:345
393392
msgid ""
394393
"Attaches the callable *fn* to the future. *fn* will be called, with the "
395394
"future as its only argument, when the future is cancelled or finishes "
@@ -398,7 +397,7 @@ msgstr ""
398397
"呼び出し可能な *fn* オブジェクトを future にアタッチします。futureがキャンセルされたか、実行を終了した際に、future "
399398
"をそのただ一つの引数として *fn* が呼び出されます。"
400399

401-
#: ../../library/concurrent.futures.rst:348
400+
#: ../../library/concurrent.futures.rst:349
402401
msgid ""
403402
"Added callables are called in the order that they were added and are always "
404403
"called in a thread belonging to the process that added them. If the "
@@ -410,20 +409,20 @@ msgstr ""
410409
" :exc:`Exception` のサブクラスを送出した場合、それはログに記録され無視されます。呼び出し可能オブジェクトが "
411410
":exc:`BaseException` のサブクラスを送出した場合の動作は未定義です。"
412411

413-
#: ../../library/concurrent.futures.rst:354
412+
#: ../../library/concurrent.futures.rst:355
414413
msgid ""
415414
"If the future has already completed or been cancelled, *fn* will be called "
416415
"immediately."
417416
msgstr "もしfutureがすでに完了しているか、キャンセル済みであれば、*fn* は即座に実行されます。"
418417

419-
#: ../../library/concurrent.futures.rst:357
418+
#: ../../library/concurrent.futures.rst:358
420419
msgid ""
421420
"The following :class:`Future` methods are meant for use in unit tests and "
422421
":class:`Executor` implementations."
423422
msgstr ""
424423
"以下の :class:`Future` メソッドは、ユニットテストでの使用と :class:`Executor` を実装することを意図しています。"
425424

426-
#: ../../library/concurrent.futures.rst:362
425+
#: ../../library/concurrent.futures.rst:363
427426
msgid ""
428427
"This method should only be called by :class:`Executor` implementations "
429428
"before executing the work associated with the :class:`Future` and by unit "
@@ -432,7 +431,7 @@ msgstr ""
432431
"このメソッドは、:class:`Future` に関連付けられたワークやユニットテストによるワークの実行前に、 :class:`Executor` "
433432
"の実装によってのみ呼び出してください。"
434433

435-
#: ../../library/concurrent.futures.rst:366
434+
#: ../../library/concurrent.futures.rst:367
436435
msgid ""
437436
"If the method returns ``False`` then the :class:`Future` was cancelled, i.e."
438437
" :meth:`Future.cancel` was called and returned `True`. Any threads waiting "
@@ -443,7 +442,7 @@ msgstr ""
443442
":meth:`Future.cancel` が呼び出されて `True` が返っています。:class:`Future` の完了を "
444443
"(:func:`as_completed` または :func:`wait` により) 待機するすべてのスレッドが起動します。"
445444

446-
#: ../../library/concurrent.futures.rst:371
445+
#: ../../library/concurrent.futures.rst:372
447446
msgid ""
448447
"If the method returns ``True`` then the :class:`Future` was not cancelled "
449448
"and has been put in the running state, i.e. calls to :meth:`Future.running` "
@@ -452,51 +451,48 @@ msgstr ""
452451
"このメソッドが ``True`` を返す場合、 :class:`Future` はキャンセルされて、実行状態に移行されています。つまり、 "
453452
":meth:`Future.running` を呼び出すと `True` が返ります。"
454453

455-
#: ../../library/concurrent.futures.rst:375
454+
#: ../../library/concurrent.futures.rst:376
456455
msgid ""
457456
"This method can only be called once and cannot be called after "
458457
":meth:`Future.set_result` or :meth:`Future.set_exception` have been called."
459458
msgstr ""
460459
"このメソッドは、一度だけ呼び出すことができ、:meth:`Future.set_result` または "
461460
":meth:`Future.set_exception` がキャンセルされた後には呼び出すことができません。"
462461

463-
#: ../../library/concurrent.futures.rst:381
462+
#: ../../library/concurrent.futures.rst:382
464463
msgid ""
465464
"Sets the result of the work associated with the :class:`Future` to *result*."
466465
msgstr ":class:`Future` に関連付けられたワークの結果を *result* に設定します。"
467466

468-
#: ../../library/concurrent.futures.rst:384
469-
#: ../../library/concurrent.futures.rst:392
467+
#: ../../library/concurrent.futures.rst:385
468+
#: ../../library/concurrent.futures.rst:393
470469
msgid ""
471470
"This method should only be used by :class:`Executor` implementations and "
472471
"unit tests."
473472
msgstr "このメソッドは、 :class:`Executor` の実装またはユニットテストによってのみ使用してください。"
474473

475-
#: ../../library/concurrent.futures.rst:389
474+
#: ../../library/concurrent.futures.rst:390
476475
msgid ""
477476
"Sets the result of the work associated with the :class:`Future` to the "
478477
":class:`Exception` *exception*."
479478
msgstr ""
480479
":class:`Future` に関連付けられたワークの結果を :class:`Exception` *exception* に設定します。"
481480

482-
#: ../../library/concurrent.futures.rst:397
481+
#: ../../library/concurrent.futures.rst:398
483482
msgid "Module Functions"
484483
msgstr "モジュール関数"
485484

486-
#: ../../library/concurrent.futures.rst:401
485+
#: ../../library/concurrent.futures.rst:402
487486
msgid ""
488487
"Wait for the :class:`Future` instances (possibly created by different "
489488
":class:`Executor` instances) given by *fs* to complete. Returns a named "
490489
"2-tuple of sets. The first set, named ``done``, contains the futures that "
491-
"completed (finished or were cancelled) before the wait completed. The "
492-
"second set, named ``not_done``, contains uncompleted futures."
490+
"completed (finished or cancelled futures) before the wait completed. The "
491+
"second set, named ``not_done``, contains the futures that did not complete "
492+
"(pending or running futures)."
493493
msgstr ""
494-
"*fs* によって与えられた (別の :class:`Executor` インスタンスによって作成された可能性のある) 複数の "
495-
":class:`Future` インスタンスの完了を待機します。集合型を 2 要素含む名前付きのタプルを返します。1 つめの集合 ``done`` "
496-
"には、待機の完了前に完了したフューチャ (完了またはキャンセル済み) が含まれます。2 つめの集合 ``not_done`` "
497-
"には、未完了のフューチャが含まれます。"
498494

499-
#: ../../library/concurrent.futures.rst:407
495+
#: ../../library/concurrent.futures.rst:409
500496
msgid ""
501497
"*timeout* can be used to control the maximum number of seconds to wait "
502498
"before returning. *timeout* can be an int or float. If *timeout* is not "
@@ -505,33 +501,33 @@ msgstr ""
505501
"*timeout* で結果を返すまで待機する最大秒数を指定できます。*timeout* は整数か浮動小数点数をとります。*timeout* "
506502
"が指定されないか ``None`` の場合、無期限に待機します。"
507503

508-
#: ../../library/concurrent.futures.rst:411
504+
#: ../../library/concurrent.futures.rst:413
509505
msgid ""
510506
"*return_when* indicates when this function should return. It must be one of"
511507
" the following constants:"
512508
msgstr "*return_when* でこの関数がいつ結果を返すか指定します。指定できる値は以下の 定数のどれか一つです:"
513509

514-
#: ../../library/concurrent.futures.rst:417
510+
#: ../../library/concurrent.futures.rst:419
515511
msgid "Constant"
516512
msgstr "定数"
517513

518-
#: ../../library/concurrent.futures.rst:417
514+
#: ../../library/concurrent.futures.rst:419
519515
msgid "Description"
520516
msgstr "説明"
521517

522-
#: ../../library/concurrent.futures.rst:419
518+
#: ../../library/concurrent.futures.rst:421
523519
msgid ":const:`FIRST_COMPLETED`"
524520
msgstr ":const:`FIRST_COMPLETED`"
525521

526-
#: ../../library/concurrent.futures.rst:419
522+
#: ../../library/concurrent.futures.rst:421
527523
msgid "The function will return when any future finishes or is cancelled."
528524
msgstr "いずれかのフューチャが終了したかキャンセルされたときに返します。"
529525

530-
#: ../../library/concurrent.futures.rst:422
526+
#: ../../library/concurrent.futures.rst:424
531527
msgid ":const:`FIRST_EXCEPTION`"
532528
msgstr ":const:`FIRST_EXCEPTION`"
533529

534-
#: ../../library/concurrent.futures.rst:422
530+
#: ../../library/concurrent.futures.rst:424
535531
msgid ""
536532
"The function will return when any future finishes by raising an exception. "
537533
"If no future raises an exception then it is equivalent to "
@@ -540,72 +536,65 @@ msgstr ""
540536
"いずれかのフューチャが例外の送出で終了した場合に返します。例外を送出したフューチャがない場合は、:const:`ALL_COMPLETED` "
541537
"と等価になります。"
542538

543-
#: ../../library/concurrent.futures.rst:428
539+
#: ../../library/concurrent.futures.rst:430
544540
msgid ":const:`ALL_COMPLETED`"
545541
msgstr ":const:`ALL_COMPLETED`"
546542

547-
#: ../../library/concurrent.futures.rst:428
543+
#: ../../library/concurrent.futures.rst:430
548544
msgid "The function will return when all futures finish or are cancelled."
549545
msgstr "すべてのフューチャが終了したかキャンセルされたときに返します。"
550546

551-
#: ../../library/concurrent.futures.rst:434
547+
#: ../../library/concurrent.futures.rst:436
552548
msgid ""
553549
"Returns an iterator over the :class:`Future` instances (possibly created by "
554550
"different :class:`Executor` instances) given by *fs* that yields futures as "
555-
"they complete (finished or were cancelled). Any futures given by *fs* that "
556-
"are duplicated will be returned once. Any futures that completed before "
557-
":func:`as_completed` is called will be yielded first. The returned iterator"
558-
" raises a :exc:`concurrent.futures.TimeoutError` if "
551+
"they complete (finished or cancelled futures). Any futures given by *fs* "
552+
"that are duplicated will be returned once. Any futures that completed before"
553+
" :func:`as_completed` is called will be yielded first. The returned "
554+
"iterator raises a :exc:`concurrent.futures.TimeoutError` if "
559555
":meth:`~iterator.__next__` is called and the result isn't available after "
560556
"*timeout* seconds from the original call to :func:`as_completed`. *timeout*"
561557
" can be an int or float. If *timeout* is not specified or ``None``, there is"
562558
" no limit to the wait time."
563559
msgstr ""
564-
"フューチャの完了時 (完了またはキャンセル) に yield する *fs* によって与えられた (別の :class:`Executor` "
565-
"インスタンスによって作成された可能性のある) 複数の :class:`Future` インスタンスのイテレータを返します。 "
566-
":func:`as_completed` が呼び出される前に完了したすべてのフューチャは最初に yield "
567-
"されます。:meth:`~iterator.__next__` が呼び出され、その結果が :func:`as_completed` の元々の呼び出しから"
568-
" *timeout* 秒経った後も利用できない場合、返されるイタレータは :exc:`concurrent.futures.TimeoutError` "
569-
"を送出します。*timeout* は整数または浮動小数点数です。*timeout* が指定されないか ``None`` "
570-
"である場合、待ち時間に制限はありません。"
571560

572-
#: ../../library/concurrent.futures.rst:448
561+
#: ../../library/concurrent.futures.rst:450
573562
msgid ":pep:`3148` -- futures - execute computations asynchronously"
574563
msgstr ":pep:`3148` -- futures - execute computations asynchronously"
575564

576-
#: ../../library/concurrent.futures.rst:448
565+
#: ../../library/concurrent.futures.rst:450
577566
msgid ""
578567
"The proposal which described this feature for inclusion in the Python "
579568
"standard library."
580569
msgstr "この機能を Python 標準ライブラリに含めることを述べた提案です。"
581570

582-
#: ../../library/concurrent.futures.rst:453
571+
#: ../../library/concurrent.futures.rst:455
583572
msgid "Exception classes"
584573
msgstr "例外クラス"
585574

586-
#: ../../library/concurrent.futures.rst:459
575+
#: ../../library/concurrent.futures.rst:461
587576
msgid "Raised when a future is cancelled."
588577
msgstr "future がキャンセルされたときに送出されます。"
589578

590-
#: ../../library/concurrent.futures.rst:463
579+
#: ../../library/concurrent.futures.rst:465
591580
msgid "Raised when a future operation exceeds the given timeout."
592581
msgstr "future の操作が与えられたタイムアウトを超過したときに送出されます。"
593582

594-
#: ../../library/concurrent.futures.rst:467
583+
#: ../../library/concurrent.futures.rst:469
595584
msgid ""
596585
"Derived from :exc:`RuntimeError`, this exception class is raised when an "
597586
"executor is broken for some reason, and cannot be used to submit or execute "
598587
"new tasks."
599588
msgstr ""
600589

601-
#: ../../library/concurrent.futures.rst:477
590+
#: ../../library/concurrent.futures.rst:479
602591
msgid ""
603592
"Derived from :exc:`~concurrent.futures.BrokenExecutor`, this exception class"
604593
" is raised when one of the workers of a :class:`ThreadPoolExecutor` has "
605594
"failed initializing."
606595
msgstr ""
607596

608-
#: ../../library/concurrent.futures.rst:487
597+
#: ../../library/concurrent.futures.rst:489
609598
msgid ""
610599
"Derived from :exc:`~concurrent.futures.BrokenExecutor` (formerly "
611600
":exc:`RuntimeError`), this exception class is raised when one of the workers"

0 commit comments

Comments
 (0)