8000 [skip ci] Update .po files · python/python-docs-ja@5aae501 · GitHub
[go: up one dir, main page]

Skip to content

Commit 5aae501

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent c364c1f commit 5aae501

File tree

4 files changed

+2861
-2828
lines changed

4 files changed

+2861
-2828
lines changed

library/asyncio-eventloops.po

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.6\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2018-01-05 15:01+0000\n"
11+
"POT-Creation-Date: 2018-05-30 13:28+0900\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: 秘湯 <xwhhsprings@gmail.com>, 2017\n"
1414
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -305,10 +305,11 @@ msgstr "現在のコンテクストのイベントループを取得します。
305305
#: ../../library/asyncio-eventloops.rst:171
306306
msgid ""
307307
"Returns an event loop object implementing the :class:`AbstractEventLoop` "
308-
"interface."
309-
msgstr ":class:`AbstractEventLoop` インターフェイスを実装したイベントループオブジェクトを返します。"
308+
"interface. In case called from coroutine, it returns the currently running "
309+
"event loop."
310+
msgstr ""
310311

311-
#: ../../library/asyncio-eventloops.rst:174
312+
#: ../../library/asyncio-eventloops.rst:175
312313
msgid ""
313314
"Raises an exception in case no event loop has been set for the current "
314315
"context and the current policy does not specify to create one. It must never"
@@ -317,24 +318,24 @@ msgstr ""
317318
"現在のコンテキストに設定されているイベントループが存在しない場合やイベントループを作成するためのポリシーが指定されていない場合には例外を送出します。\n"
318319
"``None`` を返すことがあってはなりません。"
319320

320-
#: ../../library/asyncio-eventloops.rst:180
321+
#: ../../library/asyncio-eventloops.rst:183
321322
msgid "Set the event loop for the current context to *loop*."
322323
msgstr "現在のコンテキストにイベントループ *loop* を設定します。"
323324

324-
#: ../../library/asyncio-eventloops.rst:184
325+
#: ../../library/asyncio-eventloops.rst:187
325326
msgid ""
326327
"Create and return a new event loop object according to this policy's rules."
327328
msgstr "このポリシーのルールに従った新しいイベントループを作成して返します。"
328329

329-
#: ../../library/asyncio-eventloops.rst:187
330+
#: ../../library/asyncio-eventloops.rst:190
330331
msgid ""
331332
"If there's need to set this loop as the event loop for the current context, "
332333
":meth:`set_event_loop` must be called explicitly."
333334
msgstr ""
334335
"このループを現在のコンテキストのイベントループとして設定する必要がある場合は、:meth:`set_event_loop` "
335336
"が明示的に呼び出されなくてはなりません。"
336337

337-
#: ../../library/asyncio-eventloops.rst:191
338+
#: ../../library/asyncio-eventloops.rst:194
338339
msgid ""
339340
"The default policy defines context as the current thread, and manages an "
340341
8000 "event loop per thread that interacts with :mod:`asyncio`. If the current "
@@ -343,25 +344,25 @@ msgid ""
343344
"when called from the main thread, but raises :exc:`RuntimeError` otherwise."
344345
msgstr ""
345346

346-
#: ../../library/asyncio-eventloops.rst:199
347+
#: ../../library/asyncio-eventloops.rst:202
347348
msgid "Access to the global loop policy"
348349
msgstr "グローバルループポリシーへのアクセス"
349350

350-
#: ../../library/asyncio-eventloops.rst:203
351+
#: ../../library/asyncio-eventloops.rst:206
351352
msgid "Get the current event loop policy."
352353
msgstr "現在のイベントループポリシーを取得します。"
353354

354-
#: ../../library/asyncio-eventloops.rst:207
355+
#: ../../library/asyncio-eventloops.rst:210
355356
msgid ""
356357
"Set the current event loop policy. If *policy* is ``None``, the default "
357358
"policy is restored."
358359
msgstr "現在のイベントループポリシーを設定します。*policy* が ``None`` の場合、デフォルトポリシーが復元されます。"
359360

360-
#: ../../library/asyncio-eventloops.rst:212
361+
#: ../../library/asyncio-eventloops.rst:215
361362
msgid "Customizing the event loop policy"
362363
msgstr ""
363364

364-
#: ../../library/asyncio-eventloops.rst:214
365+
#: ../../library/asyncio-eventloops.rst:217
365366
msgid ""
366367
"To implement a new event loop policy, it is recommended you subclass the "
367368
"concrete default event loop policy :class:`DefaultEventLoopPolicy` and "

library/asyncio-task.po

Lines changed: 43 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.6\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2018-01-05 15:01+0000\n"
11+
"POT-Creation-Date: 2018-05-30 13:28+0900\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: SHIMIZU Taku <shimizu.taku@gmail.com>, 2018\n"
1414
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -717,52 +717,58 @@ msgstr ""
717717
" *されません*。 (This is to prevent the cancellation of one child to cause other "
718718
"children to be cancelled.)"
719719

720-
#: ../../library/asyncio-task.rst:573
720+
#: ../../library/asyncio-task.rst:571
721+
msgid ""
722+
"If the *gather* itself is cancelled, the cancellation is propagated "
723+
"regardless of *return_exceptions*."
724+
msgstr ""
725+
726+
#: ../../library/asyncio-task.rst:577
721727
msgid ""
722728
"Return ``True`` if *obj* is a :ref:`coroutine object <coroutine>`, which may"
723729
" be based on a generator or an :keyword:`async def` coroutine."
724730
msgstr ""
725731

726-
#: ../../library/asyncio-task.rst:578
732+
#: ../../library/asyncio-task.rst:582
727733
msgid ""
728734
"Return ``True`` if *func* is determined to be a :ref:`coroutine function "
729735
"<coroutine>`, which may be a decorated generator function or an "
730736
":keyword:`async def` function."
731737
msgstr ""
732738

733-
#: ../../library/asyncio-task.rst:584
739+
#: ../../library/asyncio-task.rst:588
734740
msgid "Submit a :ref:`coroutine object <coroutine>` to a given event loop."
735741
msgstr ""
736742

737-
#: ../../library/asyncio-task.rst:586
743+
#: ../../library/asyncio-task.rst:590
738744
msgid "Return a :class:`concurrent.futures.Future` to access the result."
739745
msgstr ""
740746

741-
#: ../../library/asyncio-task.rst:588
747+
#: ../../library/asyncio-task.rst:592
742748
msgid ""
743749
"This function is meant to be called from a different thread than the one "
744750
"where the event loop is running. Usage::"
745751
msgstr ""
746752

747-
#: ../../library/asyncio-task.rst:598
753+
#: ../../library/asyncio-task.rst:602
748754
msgid ""
749755
"If an exception is raised in the coroutine, the returned future will be "
750756
"notified. It can also be used to cancel the task in the event loop::"
751757
msgstr ""
752758

753-
#: ../../library/asyncio-task.rst:611
759+
#: ../../library/asyncio-task.rst:615
754760
msgid ""
755761
"See the :ref:`concurrency and multithreading <asyncio-multithreading>` "
756762
"section of the documentation."
757763
msgstr "このドキュメントの :ref:`asyncio-multithreading` 節を参照してください。"
758764

759-
#: ../../library/asyncio-task.rst:616
765+
#: ../../library/asyncio-task.rst:620
760766
msgid ""
761767
"Unlike other functions from the module, :func:`run_coroutine_threadsafe` "
762768
"requires the *loop* argument to be passed explicitly."
763769
msgstr ""
764770

765-
#: ../../library/asyncio-task.rst:624
771+
#: ../../library/asyncio-task.rst:628
766772
msgid ""
767773
"Create a :ref:`coroutine <coroutine>` that completes after a given time (in "
768774
"seconds). If *result* is provided, it is produced to the caller when the "
@@ -771,29 +777,29 @@ msgstr ""
771777
"与えられた時間 (秒) 後に完了する :ref:`コルーチン <coroutine>` を作成します。*result* "
772778
"が与えられた場合、コルーチン完了時にそれが呼び出し元に返されます。"
773779

774-
#: ../../library/asyncio-task.rst:628
780+
#: ../../library/asyncio-task.rst:632
775781
msgid ""
776782
"The resolution of the sleep depends on the :ref:`granularity of the event "
777783
"loop <asyncio-delayed-calls>`."
778784
msgstr "スリープの分解能は :ref:`イベントループの粒度 <asyncio-delayed-calls>` に依存します。"
779785

780-
#: ../../library/asyncio-task.rst:631 ../../library/asyncio-task.rst:695
786+
#: ../../library/asyncio-task.rst:635 ../../library/asyncio-task.rst:699
781787
msgid "This function is a :ref:`coroutine <coroutine>`."
782788
msgstr "この関数は :ref:`コルーチン <coroutine>` です。"
783789

784-
#: ../../library/asyncio-task.rst:635
790+
#: ../../library/asyncio-task.rst:639
785791
msgid "Wait for a future, shielding it from cancellation."
786792
msgstr "フューチャを待機しキャンセル処理から保護します。"
787793

788-
#: ../../library/asyncio-task.rst:637
794+
#: ../../library/asyncio-task.rst:641
789795
msgid "The statement::"
790796
msgstr "命令文::"
791797

792-
#: ../../library/asyncio-task.rst:641
798+
#: ../../library/asyncio-task.rst:645
793799
msgid "is exactly equivalent to the statement::"
794800
msgstr "上の文は以下と完全に等価です::"
795801

796-
#: ../../library/asyncio-task.rst:645
802+
#: ../../library/asyncio-task.rst:649
797803
msgid ""
798804
"*except* that if the coroutine containing it is cancelled, the task running "
799805
"in ``something()`` is not cancelled. From the point of view of "
@@ -808,15 +814,15 @@ msgstr ""
808814
":exc:`~concurrent.futures.CancelledError` を送出します。注意: ``something()`` "
809815
"が他の理由でキャンセルされた場合は ``shield()`` でも保護できません。"
810816

811-
#: ../../library/asyncio-task.rst:652
817+
#: ../../library/asyncio-task.rst:656
812818
msgid ""
813819
"If you want to completely ignore cancellation (not recommended) you can "
814820
"combine ``shield()`` with a try/except clause, as follows::"
815821
msgstr ""
816822
"完全にキャンセル処理を無視させたい場合 (推奨はしません) は、以下のように ``shield()`` と try/except "
817823
"節の組み合わせで行うことができます::"
818824

819-
#: ../../library/asyncio-task.rst:664
825+
#: ../../library/asyncio-task.rst:668
820826
msgid ""
821827
"Wait for the Futures and coroutine objects given by the sequence *futures* "
822828
"to complete. Coroutines will be wrapped in Tasks. Returns two sets of "
@@ -825,11 +831,11 @@ msgstr ""
825831
"シーケンス *futures* で与えられたフューチャおよびコルーチンオブジェクトが完了するまで待機します。コルーチンはタスクでラップされます。戻り値は"
826832
" (完了した :class:`Future`, 未完の :class:`Future`) の 2 個の集合になります。"
827833

828-
#: ../../library/asyncio-task.rst:668
834+
#: ../../library/asyncio-task.rst:672
829835
msgid "The sequence *futures* must not be empty."
830836
msgstr "シーケンス *futures* は空であってはなりません。"
831837

832-
#: ../../library/asyncio-task.rst:670
838+
#: ../../library/asyncio-task.rst:674
833839
msgid ""
834840
"*timeout* can be used to control the maximum number of seconds to wait "
835841
"before returning. *timeout* can be an int or float. If *timeout* is not "
@@ -838,35 +844,35 @@ msgstr ""
838844
"*timeout* で結果を返すまで待機する最大秒数を指定できます。*timeout* は整数か浮動小数点数をとります。*timeout* "
839845
"が指定されないか ``None`` の場合、無期限に待機します。"
840846

841-
#: ../../library/asyncio-task.rst:674
847+
#: ../../library/asyncio-task.rst:678
842848
msgid ""
843849
"*return_when* indicates when this function should return. It must be one of"
844850
" the following constants of the :mod:`concurrent.futures` module:"
845851
msgstr ""
846852
"*return_when* でこの関数がいつ結果を返すか指定します。指定できる値は以下の :mod:`concurrent.futures` "
847853
"モジュール定数のどれか一つです:"
848854

849-
#: ../../library/asyncio-task.rst:680
855+
#: ../../library/asyncio-task.rst:684
850856
msgid "Constant"
851857
msgstr "定数"
852858

853-
#: ../../library/asyncio-task.rst:680
859+
#: ../../library/asyncio-task.rst:684
854860
msgid "Description"
855861
msgstr "説明"
856862

857-
#: ../../library/asyncio-task.rst:682
863+
#: ../../library/asyncio-task.rst:686
858864
msgid ":const:`FIRST_COMPLETED`"
859865
msgstr ":const:`FIRST_COMPLETED`"
860866

861-
#: ../../library/asyncio-task.rst:682
867+
#: ../../library/asyncio-task.rst:686
862868
msgid "The function will return when any future finishes or is cancelled."
863869
msgstr "いずれかのフューチャが終了したかキャンセルされたときに返します。"
864870

865-
#: ../../library/asyncio-task.rst:685
871+
#: ../../library/asyncio-task.rst:689
866872
msgid ":const:`FIRST_EXCEPTION`"
867873
msgstr ":const:`FIRST_EXCEPTION`"
868874

869-
#: ../../library/asyncio-task.rst:685
875+
#: ../../library/asyncio-task.rst:689
870876
msgid ""
871877
"The function will return when any future finishes by raising an exception. "
872878
"If no future raises an exception then it is equivalent to "
@@ -875,27 +881,27 @@ msgstr ""
875881
"いずれかのフューチャが例外の送出で終了した場合に返します。例外を送出したフューチャがない場合は、:const:`ALL_COMPLETED` "
876882
"と等価になります。"
877883

878-
#: ../../library/asyncio-task.rst:691
884+
#: ../../library/asyncio-task.rst:695
879885
msgid ":const:`ALL_COMPLETED`"
880886
msgstr ":const:`ALL_COMPLETED`"
881887

882-
#: ../../library/asyncio-task.rst:691
888+
#: ../../library/asyncio-task.rst:695
883889
msgid "The function will return when all futures finish or are cancelled."
884890
msgstr "すべてのフューチャが終了したかキャンセルされたときに返します。"
885891

886-
#: ../../library/asyncio-task.rst:697
892+
#: ../../library/asyncio-task.rst:701
887893
msgid "Usage::"
888894
msgstr "使い方::"
889895

890-
#: ../../library/asyncio-task.rst:703
896+
#: ../../library/asyncio-task.rst:707
891897
msgid ""
892898
"This does not raise :exc:`asyncio.TimeoutError`! Futures that aren't done "
893899
"when the timeout occurs are returned in the second set."
894900
msgstr ""
895901
"これは :exc:`asyncio.TimeoutError` "
896902
"を送出しません。タイムアウトが発生して完了しなかったフューチャは戻り値の後者の集合に含まれます。"
897903

898-
#: ../../library/asyncio-task.rst:709
904+
#: ../../library/asyncio-task.rst:713
899905
msgid ""
900906
"Wait for the single :class:`Future` or :ref:`coroutine object <coroutine>` "
901907
"to complete with timeout. If *timeout* is ``None``, block until the future "
@@ -904,11 +910,11 @@ msgstr ""
904910
"単一の :class:`Future` または :ref:`コルーチンオブジェクト <coroutine>` を期限付きで待機します。*timeout*"
905911
" が ``None`` の場合、フューチャが完了するまでブロックします。"
906912

907-
#: ../../library/asyncio-task.rst:713
913+
#: ../../library/asyncio-task.rst:717
908914
msgid "Coroutine will be wrapped in :class:`Task`."
909915
msgstr "コルーチンは :class:`Task` でラップされます。"
910916

911-
#: ../../library/asyncio-task.rst:715
917+
#: ../../library/asyncio-task.rst:719
912918
msgid ""
913919
"Returns result of the Future or coroutine. When a timeout occurs, it "
914920
"cancels the task and raises :exc:`asyncio.TimeoutError`. To avoid the task "
@@ -917,14 +923,14 @@ msgstr ""
917923
"フューチャあるいはコルーチンの結果を返します。タイムアウトが発生した場合、タスクをキャンセルし :exc:`asyncio.TimeoutError` "
918924
"を送出します。タスクのキャンセルを抑止したい場合は :func:`shield` でラップしてください。"
919925

920-
#: ../../library/asyncio-task.rst:719
926+
#: ../../library/asyncio-task.rst:723
921927
msgid "If the wait is cancelled, the future *fut* is also cancelled."
922928
msgstr "待機が中止された場合 *fut* も中止されます。"
923929

924-
#: ../../library/asyncio-task.rst:721
930+
#: ../../library/asyncio-task.rst:725
925931
msgid "This function is a :ref:`coroutine <coroutine>`, usage::"
926932
msgstr "この関数は :ref:`コルーチン <coroutine>` です。使用法::"
927933

928-
#: ../../library/asyncio-task.rst:725
934+
#: ../../library/asyncio-task.rst:729
929935
msgid "If the wait is cancelled, the future *fut* is now also cancelled."
930936
msgstr "待機が中止された場合 *fut* も中止されます。"

whatsnew/3.6.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.6\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2018-05-21 13:20+0900\n"
11+
"POT-Creation-Date: 2018-05-30 13:28+0900\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: mtb_beta <mtb.toya0403@gmail.com>, 2018\n"
1414
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -1029,8 +1029,8 @@ msgstr ""
10291029
#: ../../whatsnew/3.6.rst:820
10301030
msgid ""
10311031
"The :func:`~asyncio.get_event_loop` function has been changed to always "
1032-
"return the currently running loop when called from couroutines and "
1033-
"callbacks. (Contributed by Yury Selivanov in :issue:`28613`.)"
1032+
"return the currently running loop when called from coroutines and callbacks."
1033+
" (Contributed by Yury Selivanov in :issue:`28613`.)"
10341034
msgstr ""
10351035

10361036
#: ../../whatsnew/3.6.rst:825

0 commit comments

Comments
 (0)
0