Skip to content

Commit 35b581c

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent e7ad2cd commit 35b581c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+684
-1077
lines changed

faq/programming.po

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ msgid ""
2020
msgstr ""
2121
"Project-Id-Version: Python 3.7\n"
2222
"Report-Msgid-Bugs-To: \n"
23-
"POT-Creation-Date: 2018-09-12 09:20+0900\n"
23+
"POT-Creation-Date: 2018-12-20 10:06+0900\n"
2424
"PO-Revision-Date: 2017-02-16 17:43+0000\n"
2525
"Last-Translator: tomo, 2018\n"
2626
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -1002,10 +1002,8 @@ msgstr "Python で解し難いワンライナーを書くことはできます
10021002
#: ../../faq/programming.rst:740
10031003
msgid ""
10041004
"Yes. Usually this is done by nesting :keyword:`lambda` within "
1005-
":keyword:`lambda`. See the following three examples, due to Ulf Bartelt::"
1005+
":keyword:`!lambda`. See the following three examples, due to Ulf Bartelt::"
10061006
msgstr ""
1007-
"はい。そういうものはたいてい、 :keyword:`lambda` の中に :keyword:`lambda` がネストされています。Ulf "
1008-
"Bartelt による下の3つの例を見てください::"
10091007

10101008
#: ../../faq/programming.rst:767
10111009
msgid "Don't try this at home, kids!"

glossary.po

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ msgid ""
1919
msgstr ""
2020
"Project-Id-Version: Python 3.7\n"
2121
"Report-Msgid-Bugs-To: \n"
22-
"POT-Creation-Date: 2018-11-16 09:45+0900\n"
22+
"POT-Creation-Date: 2018-12-20 10:06+0900\n"
2323
"PO-Revision-Date: 2017-02-16 17:32+0000\n"
2424
"Last-Translator: tomo, 2018\n"
2525
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -714,13 +714,9 @@ msgid ""
714714
"attribute access, operators or function calls which all return a value. In "
715715
"contrast to many other languages, not all language constructs are "
716716
"expressions. There are also :term:`statement`\\s which cannot be used as "
717-
"expressions, such as :keyword:`if`. Assignments are also statements, not "
718-
"expressions."
717+
"expressions, such as :keyword:`while`. Assignments are also statements, not"
718+
" expressions."
719719
msgstr ""
720-
"(式) 何かの値と評価される、一まとまりの構文 (a piece of syntax) "
721-
"です。言い換えると、式とはリテラル、名前、属性アクセス、演算子や関数呼び出しなど、値を返す式の要素の積み重ねです。他の多くの言語と違い、Python "
722-
"では言語の全ての構成要素が式というわけではありません。 :keyword:`if` のように、式としては使えない文 "
723-
"(:term:`statement`) もあります。代入も式ではなく文です。"
724720

725721
#: ../../glossary.rst:337
726722
msgid "extension module"
@@ -956,12 +952,10 @@ msgstr "generator expression"
956952
#: ../../glossary.rst:446
957953
msgid ""
958954
"An expression that returns an iterator. It looks like a normal expression "
959-
"followed by a :keyword:`for` expression defining a loop variable, range, and"
960-
" an optional :keyword:`if` expression. The combined expression generates "
961-
"values for an enclosing function::"
955+
"followed by a :keyword:`!for` clause defining a loop variable, range, and an"
956+
" optional :keyword:`!if` clause. The combined expression generates values "
957+
"for an enclosing function::"
962958
msgstr ""
963-
"(ジェネレータ式) イテレータを返す式です。普通の式に、ループ変数を定義する :keyword:`for` 式、範囲、そして省略可能な "
964-
":keyword:`if` 式がつづいているように見えます。こうして構成された式は、外側の関数に向けて値を生成します::"
965959

966960
#: ../../glossary.rst:453
967961
msgid "generic function"

howto/functional.po

Lines changed: 5 additions & 6 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: 2018-08-08 08:48+0900\n"
21+
"POT-Creation-Date: 2018-12-20 10:06+0900\n"
2222
"PO-Revision-Date: 2017-02-16 17:44+0000\n"
2323
"Last-Translator: tomo, 2018\n"
2424
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -1453,12 +1453,11 @@ msgstr "ちょうど良い関数がビルトインやモジュールで存在し
14531453
#: ../../howto/functional.rst:1110
14541454
msgid ""
14551455
"If the function you need doesn't exist, you need to write it. One way to "
1456-
"write small functions is to use the :keyword:`lambda` statement. ``lambda``"
1457-
" takes a number of parameters and an expression combining these parameters, "
1458-
"and creates an anonymous function that returns the value of the expression::"
1456+
"write small functions is to use the :keyword:`lambda` expression. "
1457+
"``lambda`` takes a number of parameters and an expression combining these "
1458+
"parameters, and creates an anonymous function that returns the value of the "
1459+
"expression::"
14591460
msgstr ""
1460-
"しかし、欲しい関数がないなら書くしかありません。そうした小さな関数を書く方法の 一つが :keyword:`lambda` 文です。 "
1461-
"``lambda`` は引数として複数のパラメータと それをつなぐ式を取り、その式の値を返す無名の関数を作ります::"
14621461

14631462
#: ../../howto/functional.rst:1119
14641463
msgid ""

library/aifc.po

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
66
# Translators:
7+
# Yusuke Miyazaki <miyazaki.dev@gmail.com>, 2017
78
# Naoki INADA <songofacandy@gmail.com>, 2017
89
# 秘湯 <xwhhsprings@gmail.com>, 2017
9-
# Yusuke Miyazaki <miyazaki.dev@gmail.com>, 2017
1010
# Arihiro TAKASE, 2017
1111
#
1212
#, fuzzy
1313
msgid ""
1414
msgstr ""
1515
"Project-Id-Version: Python 3.7\n"
1616
"Report-Msgid-Bugs-To: \n"
17-
"POT-Creation-Date: 2018-06-30 05:56+0900\n"
17+
"POT-Creation-Date: 2018-12-20 10:06+0900\n"
1818
"PO-Revision-Date: 2017-02-16 17:47+0000\n"
1919
"Last-Translator: Arihiro TAKASE, 2017\n"
2020
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -81,17 +81,8 @@ msgid ""
8181
"be seekable, unless you know ahead of time how many samples you are going to"
8282
" write in total and use :meth:`writeframesraw` and :meth:`setnframes`. The "
8383
":func:`.open` function may be used in a :keyword:`with` statement. When the"
84-
" :keyword:`with` block completes, the :meth:`~aifc.close` method is called."
84+
" :keyword:`!with` block completes, the :meth:`~aifc.close` method is called."
8585
msgstr ""
86-
"AIFFあるいはAIFF-Cファイルを開き、後述するメソッドを持つインスタンスを返します。引数 *file* はファイルを示す文字列か、 "
87-
":term:`file object` のいずれかです。 *mode* は、読み込み用に開くときには ``'r'`` か ``'rb'`` "
88-
"のどちらかでなければならず、書き込み用に開くときには ``'w'`` か ``'wb'`` のどちらかでなければなりません。もし省略されたら、 "
89-
"``file.mode`` が存在すればそれが使用され、なければ ``'rb'`` "
90-
"が使われます。書き込み用にこのメソッドを使用するときには、これから全部でどれだけのサンプル数を書き込むのか分からなかったり、 "
91-
":meth:`writeframesraw` と :meth:`setnframes` "
92-
"を使わないなら、ファイルオブジェクトはシーク可能でなければなりません。:func:`.open` 関数は :keyword:`with` "
93-
"文の中で使われるかもしれません。:keyword:`with` ブロックの実行が終了したら、:meth:`~aifc.close` "
94-
"メソッドが呼び出されます。"
9586

9687
#: ../../library/aifc.rst:50
9788
msgid "Support for the :keyword:`with` statement was added."

library/contextlib.po

Lines changed: 10 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ msgid ""
1515
msgstr ""
1616
"Project-Id-Version: Python 3.7\n"
1717
"Report-Msgid-Bugs-To: \n"
18-
"POT-Creation-Date: 2018-10-07 09:22+0900\n"
18+
"POT-Creation-Date: 2018-12-20 10:06+0900\n"
1919
"PO-Revision-Date: 2017-02-16 23:04+0000\n"
2020
"Last-Translator: Naoki INADA <songofacandy@gmail.com>, 2017\n"
2121
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -27,8 +27,8 @@ msgstr ""
2727

2828
#: ../../library/contextlib.rst:2
2929
msgid ""
30-
":mod:`contextlib` --- Utilities for :keyword:`with`\\ -statement contexts"
31-
msgstr ":mod:`contextlib` --- :keyword:`with` 文コンテキスト用ユーティリティ"
30+
":mod:`!contextlib` --- Utilities for :keyword:`!with`\\ -statement contexts"
31+
msgstr ""
3232

3333
#: ../../library/contextlib.rst:7
3434
msgid "**Source code:** :source:`Lib/contextlib.py`"
@@ -99,11 +99,9 @@ msgstr ""
9999
msgid ""
100100
"The function being decorated must return a :term:`generator`-iterator when "
101101
"called. This iterator must yield exactly one value, which will be bound to "
102-
"the targets in the :keyword:`with` statement's :keyword:`as` clause, if any."
102+
"the targets in the :keyword:`with` statement's :keyword:`!as` clause, if "
103+
"any."
103104
msgstr ""
104-
"デコレート対象の関数は呼び出されたときに :term:`ジェネレータ "
105-
"<generator>`-イテレータを返す必要があります。このイテレータは必ず値を1つ yield しなければなりません。 "
106-
":keyword:`with` 文の :keyword:`as` 節が存在するなら、その値は as 節のターゲットへ束縛されることになります。"
107105

108106
#: ../../library/contextlib.rst:77
109107
msgid ""
@@ -116,17 +114,10 @@ msgid ""
116114
"place. If an exception is trapped merely in order to log it or to perform "
117115
"some action (rather than to suppress it entirely), the generator must "
118116
"reraise that exception. Otherwise the generator context manager will "
119-
"indicate to the :keyword:`with` statement that the exception has been "
117+
"indicate to the :keyword:`!with` statement that the exception has been "
120118
"handled, and execution will resume with the statement immediately following "
121-
"the :keyword:`with` statement."
119+
"the :keyword:`!with` statement."
122120
msgstr ""
123-
"ジェネレータが yield を実行した箇所で :keyword:`with` "
124-
"文のネストされたブロックが実行されます。ブロックから抜けた後でジェネレータは再開されます。ブロック内で処理されない例外が発生した場合は、ジェネレータ内部の"
125-
" yield を実行した箇所で例外が再送出されます。なので、(もしあれば) "
126-
"エラーを捕捉したり、クリーンアップ処理を確実に実行したりするために、:keyword:`try`...\\ :keyword:`except`...\\"
127-
" :keyword:`finally` 構文を使用できます。例外を捕捉する目的が、(完全に例外を抑制してしまうのではなく) "
128-
"単に例外のログをとるため、もしくはあるアクションを実行するためなら、ジェネレータはその例外を再送出しなければなりません。例外を再送出しない場合、ジェネレータのコンテキストマネージャは"
129-
" :keyword:`with` 文に対して例外が処理されたことを示し、:keyword:`with` 文の直後の文から実行を再開します。"
130121

131122
#: ../../library/contextlib.rst:89
132123
msgid ""
@@ -326,10 +317,8 @@ msgid ""
326317
"As the decorated function must be able to be called multiple times, the "
327318
"underlying context manager must support use in multiple :keyword:`with` "
328319
"statements. If this is not the case, then the original construct with the "
329-
"explicit :keyword:`with` statement inside the function should be used."
320+
"explicit :keyword:`!with` statement inside the function should be used."
330321
msgstr ""
331-
"デコレートされた関数が複数回呼び出せるように、内部のコンテキストマネージャーは複数の :keyword:`with` "
332-
"文に対応する必要があります。そうでないなら、明示的な :keyword:`with` 文を関数内で利用するべきです。"
333322

334323
#: ../../library/contextlib.rst:356
335324
msgid ""
@@ -767,8 +756,8 @@ msgstr ""
767756
msgid ""
768757
"More sophisticated context managers may be \"reentrant\". These context "
769758
"managers can not only be used in multiple :keyword:`with` statements, but "
770-
"may also be used *inside* a :keyword:`with` statement that is already using "
771-
"the same context manager."
759+
"may also be used *inside* a :keyword:`!with` statement that is already using"
760+
" the same context manager."
772761
msgstr ""
773762

774763
#: ../../library/contextlib.rst:777

library/fileinput.po

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ msgid ""
1414
msgstr ""
1515
"Project-Id-Version: Python 3.7\n"
1616
"Report-Msgid-Bugs-To: \n"
17-
"POT-Creation-Date: 2018-06-30 05:56+0900\n"
17+
"POT-Creation-Date: 2018-12-20 10:06+0900\n"
1818
"PO-Revision-Date: 2017-02-16 23:10+0000\n"
1919
"Last-Translator: Arihiro TAKASE, 2017\n"
2020
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -129,11 +129,8 @@ msgstr ""
129129
msgid ""
130130
"The :class:`FileInput` instance can be used as a context manager in the "
131131
":keyword:`with` statement. In this example, *input* is closed after the "
132-
":keyword:`with` statement is exited, even if an exception occurs::"
132+
":keyword:`!with` statement is exited, even if an exception occurs::"
133133
msgstr ""
134-
":class:`FileInput` のインスタンスは :keyword:`with` "
135-
"文の中でコンテキストマネージャーとして使用することができます。以下の例では、仮に例外が生じても :keyword:`with` 文から抜けた後で "
136-
"*input* は閉じられます::"
137134

138135
#: ../../library/fileinput.rst:72 ../../library/fileinput.rst:163
139136
msgid "Can be used as a context manager."
@@ -258,11 +255,8 @@ msgstr ""
258255
msgid ""
259256
"A :class:`FileInput` instance can be used as a context manager in the "
260257
":keyword:`with` statement. In this example, *input* is closed after the "
261-
":keyword:`with` statement is exited, even if an exception occurs::"
258+
":keyword:`!with` statement is exited, even if an exception occurs::"
262259
msgstr ""
263-
":class:`FileInput` のインスタンスは :keyword:`with` "
264-
"文の中でコンテキストマネージャーとして使用することができます。以下の例では、仮に例外が生じても :keyword:`with` 文から抜けた後で "
265-
"*input* は閉じられます::"
266260

267261
#: ../../library/fileinput.rst:166
268262
msgid "The ``'rU'`` and ``'U'`` modes."

library/functions.po

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ msgid ""
2020
msgstr ""
2121
"Project-Id-Version: Python 3.7\n"
2222
"Report-Msgid-Bugs-To: \n"
23-
"POT-Creation-Date: 2018-10-17 09:30+0900\n"
23+
"POT-Creation-Date: 2018-12-20 10:06+0900\n"
2424
"PO-Revision-Date: 2017-02-16 23:11+0000\n"
2525
"Last-Translator: yudetamago <yudetamago.orz@gmail.com>, 2018\n"
2626
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -2601,18 +2601,12 @@ msgid ""
26012601
"This function is invoked by the :keyword:`import` statement. It can be "
26022602
"replaced (by importing the :mod:`builtins` module and assigning to "
26032603
"``builtins.__import__``) in order to change semantics of the "
2604-
":keyword:`import` statement, but doing so is **strongly** discouraged as it "
2605-
"is usually simpler to use import hooks (see :pep:`302`) to attain the same "
2604+
":keyword:`!import` statement, but doing so is **strongly** discouraged as it"
2605+
" is usually simpler to use import hooks (see :pep:`302`) to attain the same "
26062606
"goals and does not cause issues with code which assumes the default import "
26072607
"implementation is in use. Direct use of :func:`__import__` is also "
26082608
"discouraged in favor of :func:`importlib.import_module`."
26092609
msgstr ""
2610-
"この関数は :keyword:`import` 文により呼び出されます。 (:mod:`builtins` モジュールをインポートして "
2611-
"``builtins.__import__`` に代入することで) この関数を置き換えて :keyword:`import` "
2612-
"文のセマンティクスを変更することができますが、同様のことをするのに通常はインポートフック (:pep:`302` 参照) "
2613-
"を利用する方が簡単で、かつデフォルトのインポート実装が使用されていることを仮定するコードとの間で問題が起きないので、このやり方は *強く* "
2614-
"推奨されません。 :func:`__import__` を直接使用することも推奨されず、 :func:`importlib.import_module`"
2615-
" の方が好まれます。"
26162610

26172611
#: ../../library/functions.rst:1664
26182612
msgid ""

library/imaplib.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ msgid ""
1515
msgstr ""
1616
"Project-Id-Version: Python 3.7\n"
1717
"Report-Msgid-Bugs-To: \n"
18-
"POT-Creation-Date: 2018-09-15 09:11+0900\n"
18+
"POT-Creation-Date: 2018-12-20 10:06+0900\n"
1919
"PO-Revision-Date: 2017-02-16 23:14+0000\n"
2020
"Last-Translator: tomo, 2017\n"
2121
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -67,7 +67,7 @@ msgstr ""
6767
msgid ""
6868
"The :class:`IMAP4` class supports the :keyword:`with` statement. When used "
6969
"like this, the IMAP4 ``LOGOUT`` command is issued automatically when the "
70-
":keyword:`with` statement exits. E.g.::"
70+
":keyword:`!with` statement exits. E.g.::"
7171
msgstr ""
7272

7373
#: ../../library/imaplib.rst:50

library/imp.po

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ msgid ""
1515
msgstr ""
1616
"Project-Id-Version: Python 3.7\n"
1717
"Report-Msgid-Bugs-To: \n"
18-
"POT-Creation-Date: 2018-10-27 09:37+0900\n"
18+
"POT-Creation-Date: 2018-12-20 10:06+0900\n"
1919
"PO-Revision-Date: 2017-02-16 23:14+0000\n"
2020
"Last-Translator: Osamu NAKAMURA, 2017\n"
2121
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -313,14 +313,9 @@ msgid ""
313313
"If a module imports objects from another module using :keyword:`from` ... "
314314
":keyword:`import` ..., calling :func:`reload` for the other module does not "
315315
"redefine the objects imported from it --- one way around this is to re-"
316-
"execute the :keyword:`from` statement, another is to use :keyword:`import` "
317-
"and qualified names (*module*.*name*) instead."
318-
msgstr ""
319-
"一方のモジュールが :keyword:`from` ... :keyword:`import` ... "
320-
"を使って、オブジェクトを他方のモジュールからインポートしているなら、他方のモジュールを :func:`reload` "
321-
"で呼び出しても、そのモジュールからインポートされたオブジェクトを再定義することはできません --- この問題を回避する一つの方法は、 "
322-
":keyword:`from` 文を再度実行することで、もう一つの方法は :keyword:`from` 文の代わりに "
323-
":keyword:`import` と限定的な名前 (*module*.\\*name*) を使うことです。"
316+
"execute the :keyword:`!from` statement, another is to use :keyword:`!import`"
317+
" and qualified names (*module*.*name*) instead."
318+
msgstr ""
324319

325320
#: ../../library/imp.rst:185
326321
msgid ""

0 commit comments

Comments
 (0)