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

Skip to content 8000

Commit a2ee838

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent e98172a commit a2ee838

File tree

4 files changed

+57
-37
lines changed
  • whatsnew
  • 4 files changed

    +57
    -37
    lines changed

    howto/logging.po

    Lines changed: 12 additions & 10 deletions
    Original file line numberDiff line numberDiff line change
    @@ -10,7 +10,7 @@ msgstr ""
    1010
    "Report-Msgid-Bugs-To: \n"
    1111
    "POT-Creation-Date: 2018-06-30 05:56+0900\n"
    1212
    "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    13-
    "Last-Translator: Naoki INADA <songofacandy@gmail.com>, 2017\n"
    13+
    "Last-Translator: Mukai Shohei <mukaishohei76@gmail.com>, 2018\n"
    1414
    "Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
    1515
    "MIME-Version: 1.0\n"
    1616
    "Content-Type: text/plain; charset=UTF-8\n"
    @@ -260,7 +260,7 @@ msgstr ""
    260260
    msgid ""
    261261
    "And now if we open the file and look at what we have, we should find the log"
    262262
    " messages:"
    263-
    msgstr ""
    263+
    msgstr "そして、ファイルの中身を確認すると、ログメッセージが確認できます:"
    264264

    265265
    #: ../../howto/logging.rst:145
    266266
    msgid ""
    @@ -274,7 +274,7 @@ msgstr ""
    274274
    #: ../../howto/logging.rst:149
    275275
    msgid ""
    276276
    "If you want to set the logging level from a command-line option such as:"
    277-
    msgstr ""
    277+
    msgstr "コマンドラインのオプションからログレベルを変更した場合、以下の様に入力してください:"
    278278

    279279
    #: ../../howto/logging.rst:155
    280280
    msgid ""
    @@ -331,7 +331,7 @@ msgstr "プログラムが複数のモジュールでできているなら、そ
    331331

    332332
    #: ../../howto/logging.rst:215
    333333
    msgid "If you run *myapp.py*, you should see this in *myapp.log*:"
    334-
    msgstr ""
    334+
    msgstr "*myapp.py* を実行すれば、*myapp.log*でログが確認できます:"
    335335

    336336
    #: ../../howto/logging.rst:223
    337337
    msgid ""
    @@ -390,7 +390,7 @@ msgstr "メッセージを表示するのに使われるフォーマットを変
    390390

    391391
    #: ../../howto/logging.rst:267
    392392
    msgid "which would print:"
    393-
    msgstr ""
    393+
    msgstr "により、次のように表示されます:"
    394394

    395395
    #: ../../howto/logging.rst:275
    396396
    msgid ""
    @@ -417,18 +417,19 @@ msgstr "イベントの日付と時刻を表示するには、フォーマット
    417417

    418418
    #: ../../howto/logging.rst:293
    419419
    msgid "which should print something like this:"
    420-
    msgstr ""
    420+
    msgstr "これは以下の様なフォーマットで表示されます:"
    421421

    422422
    #: ../../howto/logging.rst:299
    423423
    msgid ""
    424424
    "The default format for date/time display (shown above) is like ISO8601 or "
    425425
    ":rfc:`3339`. If you need more control over the formatting of the date/time, "
    426426
    "provide a *datefmt* argument to ``basicConfig``, as in this example::"
    427427
    msgstr ""
    428+
    "デフォルトの日付と時間のフォーマットは、ISO8601の規格で表示されます(上記の表示結果)。日付と時間のフォーマットを変更した場合は、以下の例の様に、``basicConfig``関数の*datefmt*引数に指定する必要があります:"
    428429

    429430
    #: ../../howto/logging.rst:307
    430431
    msgid "which would display something like this:"
    431-
    msgstr ""
    432+
    msgstr "これは次のように表示されます:"
    432433

    433434
    #: ../../howto/logging.rst:313
    434435
    msgid ""
    @@ -583,7 +584,7 @@ msgstr ""
    583584

    584585
    #: ../../howto/logging.rst:391
    585586
    msgid "The default format set by :func:`basicConfig` for messages is:"
    586-
    msgstr ""
    587+
    msgstr "`basicConfig`によるデフォルトのフォーマットメッセージは次のようになります:"
    587588

    588589
    #: ../../howto/logging.rst:397
    589590
    msgid ""
    @@ -863,6 +864,7 @@ msgid ""
    863864
    "If there is no message format string, the default is to use the raw message."
    864865
    " If there is no date format string, the default date format is:"
    865866
    msgstr ""
    867+
    "フォーマット文字列に何も渡さない場合は、デフォルトで行メッセージが利用されます。また、日付フォーマットに何も渡さない場合は、デフォルトで以下のフォーマットが利用されます:"
    866868

    867869
    #: ../../howto/logging.rst:545
    868870
    msgid ""
    @@ -963,7 +965,7 @@ msgstr ""
    963965

    964966
    #: ../../howto/logging.rst:647
    965967
    msgid "Here is the logging.conf file:"
    966-
    msgstr ""
    968+
    msgstr "これは`logging.conf`ファイルに記載する例です:"
    967969

    968970
    #: ../../howto/logging.rst:680
    969971
    msgid ""
    @@ -1049,7 +1051,7 @@ msgstr ""
    10491051
    msgid ""
    10501052
    "Here's an example of the same configuration as above, in YAML format for the"
    10511053
    " new dictionary-based approach:"
    1052-
    msgstr ""
    1054+
    msgstr "以下は上記と同じ設定を、辞書形式に基づくYAMLフォーマットとして書いたものです:"
    10531055

    10541056
    #: ../../howto/logging.rst:757
    10551057
    msgid ""

    tutorial/modules.po

    Lines changed: 2 additions & 2 deletions
    Original file line numberDiff line numberDiff line change
    @@ -10,7 +10,7 @@ msgstr ""
    1010
    "Report-Msgid-Bugs-To: \n"
    1111
    "POT-Creation-Date: 2018-06-30 05:56+0900\n"
    1212
    "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    13-
    "Last-Translator: 野村 文裕 <enet.nf@gmail.com>, 2018\n"
    13+
    "Last-Translator: Seiji Momoto <seiji.momoto@gmail.com>, 2018\n"
    1414
    "Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
    1515
    "MIME-Version: 1.0\n"
    1616
    "Content-Type: text/plain; charset=UTF-8\n"
    @@ -375,7 +375,7 @@ msgstr ":mod:`compileall` モジュールを使ってディレクトリ内の全
    375375
    msgid ""
    376376
    "There is more detail on this process, including a flow chart of the "
    377377
    "decisions, in :pep:`3147`."
    378-
    msgstr ""
    378+
    msgstr "この処理に関する詳細は、判定のフローチャートを含めて、:pep:`3147` に記載されています。"
    379379

    380380
    #: ../../tutorial/modules.rst:258
    381381
    msgid "Standard Modules"

    whatsnew/3.7.po

    Lines changed: 41 additions & 23 deletions
    Original file line numberDiff line numberDiff line change
    @@ -20,22 +20,24 @@ msgstr ""
    2020

    2121
    #: ../../whatsnew/3.7.rst:3
    2222
    msgid "What's New In Python 3.7"
    23-
    msgstr ""
    23+
    msgstr "What's New In Python 3.7"
    2424

    2525
    #: ../../whatsnew/3.7.rst:0
    2626
    msgid "Editor"
    2727
    msgstr ""
    2828

    2929
    #: ../../whatsnew/3.7.rst:5
    3030
    msgid "Elvis Pranskevichus <elvis@magic.io>"
    31-
    msgstr ""
    31+
    msgstr "Elvis Pranskevichus <elvis@magic.io>"
    3232

    3333
    #: ../../whatsnew/3.7.rst:47
    3434
    msgid ""
    3535
    "This article explains the new features in Python 3.7, compared to 3.6. "
    3636
    "Python 3.7 was released on June 27, 2018. For full details, see the "
    3737
    ":ref:`changelog <changelog>`."
    3838
    msgstr ""
    39+
    "この記事では 3.6 と比較した Python 3.7 の新機能を解説します。Python 3.7 "
    40+
    "は2018年6月27日にリリースされました。全詳細については :ref:`変更履歴 <changelog>` をご覧ください。"
    3941

    4042
    #: ../../whatsnew/3.7.rst:53
    4143
    msgid "Summary -- Release Highlights"
    @@ -49,15 +51,15 @@ msgstr "新たな文法機能:"
    4951
    msgid ""
    5052
    ":ref:`PEP 563 <whatsnew37-pep563>`, postponed evaluation of type "
    5153
    "annotations."
    52-
    msgstr ""
    54+
    msgstr ":ref:`PEP 563 <whatsnew37-pep563>` 、型アノテーションの評価の遅延。"
    5355

    5456
    #: ../../whatsnew/3.7.rst:62
    5557
    msgid "Backwards incompatible syntax changes:"
    56-
    msgstr ""
    58+
    msgstr "後方非互換な文法の変更:"
    5759

    5860
    #: ../../whatsnew/3.7.rst:64
    5961
    msgid ":keyword:`async` and :keyword:`await` are now reserved keywords."
    60-
    msgstr ""
    62+
    msgstr ":keyword:`async` と :keyword:`await` は予約されたキーワードになりました。"
    6163

    6264
    #: ../../whatsnew/3.7.rst:66
    6365
    msgid "New library modules:"
    @@ -66,15 +68,15 @@ msgstr "新たなライブラリモジュール:"
    6668
    #: ../../whatsnew/3.7.rst:68
    6769
    msgid ""
    6870
    ":mod:`contextvars`: :ref:`PEP 567 -- Context Variables <whatsnew37-pep567>`"
    69-
    msgstr ""
    71+
    msgstr ":mod:`contextvars`: :ref:`PEP 567 -- コンテキスト変数 <whatsnew37-pep567>`"
    7072

    7173
    #: ../../whatsnew/3.7.rst:69
    7274
    msgid ":mod:`dataclasses`: :ref:`PEP 557 -- Data Classes <whatsnew37-pep557>`"
    73-
    msgstr ""
    75+
    msgstr ":mod:`dataclasses`: :ref:`PEP 557 -- データクラス <whatsnew37-pep557>`"
    7476

    7577
    #: ../../whatsnew/3.7.rst:70
    7678
    msgid ":ref:`whatsnew37_importlib_resources`"
    77-
    msgstr ""
    79+
    msgstr ":ref:`whatsnew37_importlib_resources`"
    7880

    7981
    #: ../../whatsnew/3.7.rst:72
    8082
    msgid "New built-in features:"
    @@ -83,30 +85,33 @@ msgstr "新たな組み込み機能:"
    8385
    #: ../../whatsnew/3.7.rst:74
    8486
    msgid ""
    8587
    ":ref:`PEP 553 <whatsnew37-pep553>`, the new :func:`breakpoint` function."
    86-
    msgstr ""
    88+
    msgstr ":ref:`PEP 553 <whatsnew37-pep553>` 、新しい :func:`breakpoint` 関数。"
    8789

    8890
    #: ../../whatsnew/3.7.rst:76
    8991
    msgid "Python data model improvements:"
    90-
    msgstr ""
    92+
    msgstr "Python のデータモデルの改善:"
    9193

    9294
    #: ../../whatsnew/3.7.rst:78
    9395
    msgid ""
    9496
    ":ref:`PEP 562 <whatsnew37-pep562>`, customization of access to module "
    9597
    "attributes."
    96-
    msgstr ""
    98+
    msgstr ":ref:`PEP 562 <whatsnew37-pep562>` 、モジュール属性へのアクセスのカスタマイズ。"
    9799

    98100
    #: ../../whatsnew/3.7.rst:81
    99101
    msgid ""
    100102
    ":ref:`PEP 560 <whatsnew37-pep560>`, core support for typing module and "
    101103
    "generic types."
    102104
    msgstr ""
    105+
    ":ref:`PEP 560 <whatsnew37-pep560>` 、typing モジュールとジェネリック型に対する言語コアによるサポート。"
    103106

    104107
    #: ../../whatsnew/3.7.rst:84
    105108
    msgid ""
    106109
    "the insertion-order preservation nature of :ref:`dict <typesmapping>` "
    107110
    "objects `has been declared`_ to be an official part of the Python language "
    108111
    "spec."
    109112
    msgstr ""
    113+
    ":ref:`dict <typesmapping>` オブジェクトの挿入順序を保存するという性質が、公式に Python 言語仕様の一部であると "
    114+
    "`宣言されました <has been declared>`_ 。"
    110115

    111116
    #: ../../whatsnew/3.7.rst:90
    112117
    msgid "Significant improvements in the standard library:"
    @@ -117,105 +122,118 @@ msgid ""
    117122
    "The :mod:`asyncio` module has received new features, significant "
    118123
    ":ref:`usability and performance improvements <whatsnew37_asyncio>`."
    119124
    msgstr ""
    125+
    ":mod:`asyncio` モジュールに新しい機能が加わりました。\n"
    126+
    "顕著な :ref:`使い勝手とパフォーマンスの改善 <whatsnew37_asyncio>` です。"
    120127

    121128
    #: ../../whatsnew/3.7.rst:95
    122129
    msgid ""
    123130
    "The :mod:`time` module gained support for :ref:`functions with nanosecond "
    124131
    "resolution <whatsnew37-pep564>`."
    125132
    msgstr ""
    133+
    ":mod:`time` モジュールが :ref:`ナノ秒単位の分解能を持つ関数 <whatsnew37-pep564>` "
    134+
    "をサポートするようになりました。"
    126135

    127136
    #: ../../whatsnew/3.7.rst:98
    128137
    msgid "CPython implementation improvements:"
    129138
    msgstr "CPython の実装の改善:"
    130139

    131140
    #: ../../whatsnew/3.7.rst:100
    132141
    msgid "Avoiding the use of ASCII as a default text encoding:"
    133-
    msgstr ""
    142+
    msgstr "デフォルトのテキストエンコーディングとして ASCII を使わなくなりました:"
    134143

    135144
    #: ../../whatsnew/3.7.rst:102
    136145
    msgid ":ref:`PEP 538 <whatsnew37-pep538>`, legacy C locale coercion"
    137-
    msgstr ""
    146+
    msgstr ":ref:`PEP 538 <whatsnew37-pep538>` 、レガシーな C ロケールの強制"
    138147

    139148
    #: ../../whatsnew/3.7.rst:103
    140149
    msgid ":ref:`PEP 540 <whatsnew37-pep540>`, forced UTF-8 runtime mode"
    141-
    msgstr ""
    150+
    msgstr ":ref:`PEP 540 <whatsnew37-pep540>`, UTF-8 実行時モードの強制"
    142151

    143152
    #: ../../whatsnew/3.7.rst:104
    144153
    msgid ":ref:`PEP 552 <whatsnew37-pep552>`, deterministic .pycs"
    145-
    msgstr ""
    154+
    msgstr ":ref:`PEP 552 <whatsnew37-pep552>` 、決定論的な .pycs"
    146155

    147156
    #: ../../whatsnew/3.7.rst:105
    148157
    msgid ":ref:`the new development runtime mode <whatsnew37-devmode>`"
    149-
    msgstr ""
    158+
    msgstr ":ref:`新しい開発用実行時モード <whatsnew37-devmode>`"
    150159

    151160
    #: ../../whatsnew/3.7.rst:106
    152161
    msgid ""
    153162
    ":ref:`PEP 565 <whatsnew37-pep565>`, improved :exc:`DeprecationWarning` "
    154163
    "handling"
    155164
    msgstr ""
    165+
    ":ref:`PEP 565 <whatsnew37-pep565>` 、 :exc:`DeprecationWarning` の取り扱いの改善"
    156166

    157167
    #: ../../whatsnew/3.7.rst:109
    158168
    msgid "C API improvements:"
    159-
    msgstr ""
    169+
    msgstr "C API の改善:"
    160170

    161171
    #: ../../whatsnew/3.7.rst:111
    162172
    msgid ":ref:`PEP 539 <whatsnew37-pep539>`, new C API for thread-local storage"
    163-
    msgstr ""
    173+
    msgstr ":ref:`PEP 539 <whatsnew37-pep539>` 、スレッドローカルなストレージのための新しい C API"
    164174

    165175
    #: ../../whatsnew/3.7.rst:113
    166176
    msgid "Documentation improvements:"
    167-
    msgstr ""
    177+
    msgstr "ドキュメントの改善:"
    168178

    169179
    #: ../../whatsnew/3.7.rst:115
    170180
    msgid ":ref:`PEP 545 <whatsnew37-pep545>`, Python documentation translations"
    171-
    msgstr ""
    181+
    msgstr ":ref:`PEP 545 <whatsnew37-pep545>` 、 Python ドキュメント翻訳"
    172182

    173183
    #: ../../whatsnew/3.7.rst:116
    174184
    msgid ""
    175185
    "New documentation translations: `Japanese <https://docs.python.org/ja/>`_, "
    176186
    "`French <https://docs.python.org/fr/>`_, and `Korean "
    177187
    "<https://docs.python.org/ko/>`_."
    178188
    msgstr ""
    189+
    "新しいドキュメント翻訳: `日本語 <https://docs.python.org/ja/>`_ 、 `フランス語 "
    190+
    "<https://docs.python.org/fr/>`_ 、 `韓国語 <https://docs.python.org/ko/>`_ 。"
    179191

    180192
    #: ../../whatsnew/3.7.rst:120
    181193
    msgid ""
    182194
    "This release features notable performance improvements in many areas. The "
    183195
    ":ref:`whatsnew37-perf` section lists them in detail."
    184196
    msgstr ""
    197+
    "このリリースの特色は、多くの領域での特筆すべきパフォーマンスの改善です。\n"
    198+
    ":ref:`whatsnew37-perf` 節に詳細な一覧があります。"
    185199

    186200
    #: ../../whatsnew/3.7.rst:123
    187201
    msgid ""
    188202
    "For a list of changes that may affect compatibility with previous Python "
    189203
    "releases please refer to the :ref:`porting-to-python-37` section."
    190204
    msgstr ""
    205+
    "1つ前にリリースされた Python との互換性に影響を持つ変更の一覧については、 :ref:`porting-to-python-37` "
    206+
    "節を参照してください。"
    191207

    192208
    #: ../../whatsnew/3.7.rst:128
    193209
    msgid "New Features"
    194210
    msgstr "新しい機能"
    195211

    196212
    #: ../../whatsnew/3.7.rst:133
    197213
    msgid "PEP 563: Postponed Evaluation of Annotations"
    198-
    msgstr ""
    214+
    msgstr "PEP 563: アノテーションの評価の遅延"
    199215

    200216
    #: ../../whatsnew/3.7.rst:135
    201217
    msgid ""
    202218
    "The advent of type hints in Python uncovered two glaring usability issues "
    203219
    "with the functionality of annotations added in :pep:`3107` and refined "
    204220
    "further in :pep:`526`:"
    205221
    msgstr ""
    222+
    "Python における型ヒントの到来により、 :pep:`3107` で追加され :pep:`526` "
    223+
    "でさらに改善されたアノテーションの機能について、使い勝手に関する 2 つの明白な課題が明らかになりました:"
    206224

    207225
    #: ../../whatsnew/3.7.rst:139
    208226
    msgid ""
    209227
    "annotations could only use names which were already available in the current"
    210228
    " scope, in other words they didn't support forward references of any kind; "
    211229
    "and"
    212-
    msgstr ""
    230+
    msgstr "アノテーションには現在のスコープで既に使える状態になっている名前しか使えない。言い換えれば、どんな種類の前方参照もサポートしない。"
    213231

    214232
    #: ../../whatsnew/3.7.rst:143
    215233
    msgid ""
    216234
    "annotating source code had adverse effects on startup time of Python "
    217235
    "programs."
    218-
    msgstr ""
    236+
    msgstr "ソースコードに注釈を付けるのは Python プログラムの起動時間に好ましくない影響がある。"
    219237

    220238
    #: ../../whatsnew/3.7.rst:146
    221239
    msgid ""

    whatsnew/changelog.po

    Lines changed: 2 additions & 2 deletions
    Original file line numberDiff line numberDiff line change
    @@ -10,7 +10,7 @@ msgstr ""
    1010
    "Report-Msgid-Bugs-To: \n"
    1111
    "POT-Creation-Date: 2018-06-30 05:56+0900\n"
    1212
    "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    13-
    "Last-Translator: Hiroki Kimura <ranpaku1012@yahoo.co.jp>, 2017\n"
    13+
    "Last-Translator: Seiji Momoto <seiji.momoto@gmail.com>, 2018\n"
    1414
    "Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
    1515
    "MIME-Version: 1.0\n"
    1616
    "Content-Type: text/plain; charset=UTF-8\n"
    @@ -28,7 +28,7 @@ msgstr ""
    2828

    2929
    #: ../../../build/NEWS:7
    3030
    msgid "*Release date: XXXX-XX-XX*"
    31-
    msgstr ""
    31+
    msgstr "*リリース日: XXXX-XX-XX*"
    3232

    3333
    #: ../../../build/NEWS:10 ../../../build/NEWS:148 ../../../build/NEWS:260
    3434
    #: ../../../build/NEWS:473 ../../../build/NEWS:666 ../../../build/NEWS:876

    0 commit comments

    Comments
     (0)
    0