Skip to content

Commit 6edc4a0

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent 6a475f9 commit 6edc4a0

File tree

3 files changed

+299
-301
lines changed

3 files changed

+299
-301
lines changed

glossary.po

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ msgid ""
2020
msgstr ""
2121
"Project-Id-Version: Python 3.9\n"
2222
"Report-Msgid-Bugs-To: \n"
23-
"POT-Creation-Date: 2020-08-20 03:54+0000\n"
23+
"POT-Creation-Date: 2020-09-28 04:12+0000\n"
2424
"PO-Revision-Date: 2017-02-16 17:32+0000\n"
2525
"Last-Translator: tomo, 2020\n"
2626
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -2249,25 +2249,25 @@ msgid ""
22492249
"example::"
22502250
msgstr "型エイリアスは :term:`型ヒント <type hint>` を単純化するのに有用です。例えば::"
22512251

2252-
#: ../../glossary.rst:1093
2252+
#: ../../glossary.rst:1091
22532253
msgid "could be made more readable like this::"
22542254
msgstr "これは次のようにより読みやすくできます::"
22552255

2256-
#: ../../glossary.rst:1102 ../../glossary.rst:1116
2256+
#: ../../glossary.rst:1098 ../../glossary.rst:1112
22572257
msgid "See :mod:`typing` and :pep:`484`, which describe this functionality."
22582258
msgstr "機能の説明がある :mod:`typing` と :pep:`484` を参照してください。"
22592259

2260-
#: ../../glossary.rst:1103
2260+
#: ../../glossary.rst:1099
22612261
msgid "type hint"
22622262
msgstr "type hint"
22632263

2264-
#: ../../glossary.rst:1105
2264+
#: ../../glossary.rst:1101
22652265
msgid ""
22662266
"An :term:`annotation` that specifies the expected type for a variable, a "
22672267
"class attribute, or a function parameter or return value."
22682268
msgstr "(型ヒント) 変数、クラス属性、関数のパラメータや返り値の期待される型を指定する :term:`annotation` です。"
22692269

2270-
#: ../../glossary.rst:1108
2270+
#: ../../glossary.rst:1104
22712271
msgid ""
22722272
"Type hints are optional and are not enforced by Python but they are useful "
22732273
"to static type analysis tools, and aid IDEs with code completion and "
@@ -2276,18 +2276,18 @@ msgstr ""
22762276
"型ヒントは必須ではなく Python では強制ではありませんが、静的型解析ツールにとって有用であり、IDE "
22772277
"のコード補完とリファクタリングの手助けになります。"
22782278

2279-
#: ../../glossary.rst:1112
2279+
#: ../../glossary.rst:1108
22802280
msgid ""
22812281
"Type hints of global variables, class attributes, and functions, but not "
22822282
"local variables, can be accessed using :func:`typing.get_type_hints`."
22832283
msgstr ""
22842284
"グローバル変数、クラス属性、関数で、ローカル変数でないものの型ヒントは :func:`typing.get_type_hints` で取得できます。"
22852285

2286-
#: ../../glossary.rst:1117
2286+
#: ../../glossary.rst:1113
22872287
msgid "universal newlines"
22882288
msgstr "universal newlines"
22892289

2290-
#: ../../glossary.rst:1119
2290+
#: ../../glossary.rst:1115
22912291
msgid ""
22922292
"A manner of interpreting text streams in which all of the following are "
22932293
"recognized as ending a line: the Unix end-of-line convention ``'\\n'``, the "
@@ -2299,44 +2299,44 @@ msgstr ""
22992299
"``'\\r\\n'``、古い Macintosh の規定 ``'\\r'``。利用法について詳しくは、 :pep:`278` と "
23002300
":pep:`3116` 、さらに :func:`bytes.splitlines` も参照してください。"
23012301

2302-
#: ../../glossary.rst:1124
2302+
#: ../../glossary.rst:1120
23032303
msgid "variable annotation"
23042304
msgstr "variable annotation"
23052305

2306-
#: ../../glossary.rst:1126
2306+
#: ../../glossary.rst:1122
23072307
msgid "An :term:`annotation` of a variable or a class attribute."
23082308
msgstr "(変数アノテーション) 変数あるいはクラス属性の :term:`annotation` 。"
23092309

2310-
#: ../../glossary.rst:1128
2310+
#: ../../glossary.rst:1124
23112311
msgid ""
23122312
"When annotating a variable or a class attribute, assignment is optional::"
23132313
msgstr "変数あるいはクラス属性に注釈を付けたときは、代入部分は任意です::"
23142314

2315-
#: ../../glossary.rst:1133
2315+
#: ../../glossary.rst:1129
23162316
msgid ""
23172317
"Variable annotations are usually used for :term:`type hints <type hint>`: "
23182318
"for example this variable is expected to take :class:`int` values::"
23192319
msgstr ""
23202320
"変数アノテーションは通常は :term:`型ヒント<type hint>` のために使われます: 例えば、この変数は :class:`int` "
23212321
"の値を取ることを期待されています::"
23222322

2323-
#: ../../glossary.rst:1139
2323+
#: ../../glossary.rst:1135
23242324
msgid "Variable annotation syntax is explained in section :ref:`annassign`."
23252325
msgstr "変数アノテーションの構文については :ref:`annassign` 節で解説しています。"
23262326

2327-
#: ../../glossary.rst:1141
2327+
#: ../../glossary.rst:1137
23282328
msgid ""
23292329
"See :term:`function annotation`, :pep:`484` and :pep:`526`, which describe "
23302330
"this functionality."
23312331
msgstr ""
23322332
"この機能について解説している :term:`function annotation`, :pep:`484`, :pep:`526` "
23332333
"を参照してください。"
23342334

2335-
#: ../../glossary.rst:1143
2335+
#: ../../glossary.rst:1139
23362336
msgid "virtual environment"
23372337
msgstr "virtual environment"
23382338

2339-
#: ../../glossary.rst:1145
2339+
#: ../../glossary.rst:1141
23402340
msgid ""
23412341
"A cooperatively isolated runtime environment that allows Python users and "
23422342
"applications to install and upgrade Python distribution packages without "
@@ -2346,27 +2346,27 @@ msgstr ""
23462346
"(仮想環境)協調的に切り離された実行環境です。これにより Python ユーザとアプリケーションは同じシステム上で動いている他の Python "
23472347
"アプリケーションの挙動に干渉することなく Python パッケージのインストールと更新を行うことができます。"
23482348

2349-
#: ../../glossary.rst:1150
2349+
#: ../../glossary.rst:1146
23502350
msgid "See also :mod:`venv`."
23512351
msgstr ":mod:`venv` を参照してください。"
23522352

2353-
#: ../../glossary.rst:1151
2353+
#: ../../glossary.rst:1147
23542354
msgid "virtual machine"
23552355
msgstr "virtual machine"
23562356

2357-
#: ../../glossary.rst:1153
2357+
#: ../../glossary.rst:1149
23582358
msgid ""
23592359
"A computer defined entirely in software. Python's virtual machine executes "
23602360
"the :term:`bytecode` emitted by the bytecode compiler."
23612361
msgstr ""
23622362
"(仮想マシン) 完全にソフトウェアにより定義されたコンピュータ。 Python の仮想マシンは、バイトコードコンパイラが出力した "
23632363
":term:`バイトコード <bytecode>` を実行します。"
23642364

2365-
#: ../../glossary.rst:1155
2365+
#: ../../glossary.rst:1151
23662366
msgid "Zen of Python"
23672367
msgstr "Zen of Python"
23682368

2369-
#: ../../glossary.rst:1157
2369+
#: ../../glossary.rst:1153
23702370
msgid ""
23712371
"Listing of Python design principles and philosophies that are helpful in "
23722372
"understanding and using the language. The listing can be found by typing "

library/exceptions.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ msgid ""
259259
msgstr ""
260260
":term:`ジェネレータ <generator>` や :term:`コルーチン <coroutine>` が閉じられたときに送出されます。 "
261261
":meth:`generator.close` と :meth:`coroutine.close` "
262-
"を参照してください。この例外はエラーではなく技術的なものなので、 :exc:`Exception` ではなく :exc:`BaseException` "
262+
"を参照してください。この例外は厳密に言えばエラーではないので、 :exc:`Exception` ではなく :exc:`BaseException` "
263263
"を直接継承しています。"
264264

265265
#: ../../library/exceptions.rst:170

0 commit comments

Comments
 (0)