Skip to content

Commit 0aaabfd

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent 6a9cff5 commit 0aaabfd

File tree

4 files changed

+107
-119
lines changed

4 files changed

+107
-119
lines changed

c-api/conversion.po

+5-14
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ msgid ""
1313
msgstr ""
1414
"Project-Id-Version: Python 3.9\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2021-02-19 05:30+0000\n"
16+
"POT-Creation-Date: 2021-02-20 05:29+0000\n"
1717
"PO-Revision-Date: 2017-02-16 17:34+0000\n"
1818
"Last-Translator: tomo, 2020\n"
1919
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -58,14 +58,11 @@ msgstr ""
5858

5959
#: ../../c-api/conversion.rst:28
6060
msgid ""
61-
"The wrappers ensure that *str*[*size*-1] is always ``'\\0'`` upon return. "
61+
"The wrappers ensure that ``str[size-1]`` is always ``'\\0'`` upon return. "
6262
"They never write more than *size* bytes (including the trailing ``'\\0'``) "
6363
"into str. Both functions require that ``str != NULL``, ``size > 0`` and "
6464
"``format != NULL``."
6565
msgstr ""
66-
"これらのラッパ関数は、戻るときに *str*[*size*-1] が常に ``'\\0'`` であることを保証します。(str の末尾の "
67-
"``'\\0'`` を含めて) *size* バイト以上を書き込みません。``str != NULL``, ``size > 0``, ``format"
68-
" != NULL`` を要求します。"
6966

7067
#: ../../c-api/conversion.rst:33
7168
msgid ""
@@ -86,28 +83,22 @@ msgstr "これらの関数の戻り値 (以下では *rv* とします) は以
8683
msgid ""
8784
"When ``0 <= rv < size``, the output conversion was successful and *rv* "
8885
"characters were written to *str* (excluding the trailing ``'\\0'`` byte at "
89-
"*str*[*rv*])."
86+
"``str[rv]``)."
9087
msgstr ""
91-
"``0 <= rv < size`` のとき、変換出力は成功して、(最後の *str*[*rv*] にある ``'\\0'`` を除いて) *rv* "
92-
"文字が *str* に出力された。"
9388

9489
#: ../../c-api/conversion.rst:43
9590
msgid ""
9691
"When ``rv >= size``, the output conversion was truncated and a buffer with "
97-
"``rv + 1`` bytes would have been needed to succeed. *str*[*size*-1] is "
92+
"``rv + 1`` bytes would have been needed to succeed. ``str[size-1]`` is "
9893
"``'\\0'`` in this case."
9994
msgstr ""
100-
"``rv >= size`` のとき、変換出力は切り詰められており、成功するためには ``rv + 1`` "
101-
"バイトが必要だったことを示します。*str*[*size*-1] は ``'\\0'`` です。"
10295

10396
#: ../../c-api/conversion.rst:47
10497
msgid ""
105-
"When ``rv < 0``, \"something bad happened.\" *str*[*size*-1] is ``'\\0'`` in"
98+
"When ``rv < 0``, \"something bad happened.\" ``str[size-1]`` is ``'\\0'`` in"
10699
" this case too, but the rest of *str* is undefined. The exact cause of the "
107100
"error depends on the underlying platform."
108101
msgstr ""
109-
"``rv < 0`` のときは、何か悪いことが起こった時です。この場合でも *str*[*size*-1] は ``'\\0'`` ですが、*str* "
110-
"のそれ以外の部分は未定義です。エラーの正確な原因はプラットフォーム依存です。"
111102

112103
#: ../../c-api/conversion.rst:51
113104
msgid ""

library/dis.po

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ msgid ""
1616
msgstr ""
1717
"Project-Id-Version: Python 3.9\n"
1818
"Report-Msgid-Bugs-To: \n"
19-
"POT-Creation-Date: 2021-01-01 05:02+0000\n"
19+
"POT-Creation-Date: 2021-02-20 05:29+0000\n"
2020
"PO-Revision-Date: 2017-02-16 23:06+0000\n"
2121
"Last-Translator: tomo, 2019\n"
2222
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -419,8 +419,8 @@ msgstr "スタックの二番目と三番目の要素の位置を 1 つ上げ、
419419

420420
#: ../../library/dis.rst:349
421421
msgid ""
422-
"Lifts second, third and forth stack items one position up, moves top down to"
423-
" position four."
422+
"Lifts second, third and fourth stack items one position up, moves top down "
423+
"to position four."
424424
msgstr ""
425425

426426
#: ../../library/dis.rst:357

0 commit comments

Comments
 (0)