Skip to content

Commit 8e61bf1

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent 10d3a3a commit 8e61bf1

File tree

5 files changed

+6355
-6346
lines changed

5 files changed

+6355
-6346
lines changed

glossary.po

+5-3
Original file line numberDiff line numberDiff line change
@@ -861,9 +861,11 @@ msgid ""
861861
"division. Note that ``(-11) // 4`` is ``-3`` because that is ``-2.75`` "
862862
"rounded *downward*. See :pep:`238`."
863863
msgstr ""
864-
"一番近い小さい整数に丸める数学除算。floor division 演算子は ``//`` です。例えば、 ``11 // 4`` は ``2`` "
865-
"になり、 float の true division の結果 ``2.75`` と異なります。 ``(-11) // 4`` は ``-2.75`` を"
866-
" *小さい方に* 丸めるので ``-3`` になることに注意してください。 :pep:`238` を参照してください。"
864+
"(切り捨て除算) 一番近い整数に切り捨てる数学除算。\n"
865+
"切り捨て除算演算子は ``//`` です。\n"
866+
"例えば、 ``11 // 4`` は ``2`` になり、それとは対称に浮動小数点数の真の除算では ``2.75`` が 返ってきます。\n"
867+
"``(-11) // 4`` は ``-2.75`` を *小さい方に* 丸める (訳注: 負の無限大への丸めを行う) ので ``-3`` になることに注意してください。\n"
868+
":pep:`238` を参照してください。"
867869

868870
#: ../../glossary.rst:398
869871
msgid "function"

library/datetime.po

+4-5
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
# Arihiro TAKASE, 2017
1313
# 永田 大和 <gey3933@gmail.com>, 2019
1414
# 秘湯 <xwhhsprings@gmail.com>, 2019
15-
# tomo, 2019
1615
# Yusuke Miyazaki <miyazaki.dev@gmail.com>, 2019
1716
# SHIMIZU Taku <shimizu.taku@gmail.com>, 2020
17+
# tomo, 2020
1818
#
1919
#, fuzzy
2020
msgid ""
@@ -23,7 +23,7 @@ msgstr ""
2323
"Report-Msgid-Bugs-To: \n"
2424
"POT-Creation-Date: 2020-05-31 09:25+0000\n"
2525
"PO-Revision-Date: 2017-02-16 23:06+0000\n"
26-
"Last-Translator: SHIMIZU Taku <shimizu.taku@gmail.com>, 2020\n"
26+
"Last-Translator: tomo, 2020\n"
2727
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
2828
"MIME-Version: 1.0\n"
2929
"Content-Type: text/plain; charset=UTF-8\n"
@@ -692,9 +692,8 @@ msgid ""
692692
":class:`timedelta` object by a :class:`float` object are now supported."
693693
msgstr ""
694694
":class:`timedelta` オブジェクトの別の :class:`timedelta` "
695-
"オブジェクトによる、切り捨ての割り算と真の値の割り算、および剰余演算子と :func:`divmod` 関数がサポートされるようになりました。 "
696-
":class:`timedelta` オブジェクトと :class:`float` "
697-
"オブジェクトの真の値の割り算と掛け算がサポートされるようになりました。"
695+
"オブジェクトによる、切り捨て除算と真の除算、および剰余演算と :func:`divmod` 関数がサポートされるようになりました。 "
696+
":class:`timedelta` オブジェクトと :class:`float` オブジェクトの真の除算と掛け算がサポートされるようになりました。"
698697

699698
#: ../../library/datetime.rst:386
700699
msgid ""

library/decimal.po

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# Arihiro TAKASE, 2017
1313
# mnamihdk, 2017
1414
# Osamu NAKAMURA, 2017
15-
# tomo, 2019
15+
# tomo, 2020
1616
#
1717
#, fuzzy
1818
msgid ""
@@ -21,7 +21,7 @@ msgstr ""
2121
"Report-Msgid-Bugs-To: \n"
2222
"POT-Creation-Date: 2020-07-20 03:48+0000\n"
2323
"PO-Revision-Date: 2017-02-16 23:06+0000\n"
24-
"Last-Translator: tomo, 2019\n"
24+
"Last-Translator: tomo, 2020\n"
2525
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
2626
"MIME-Version: 1.0\n"
2727
"Content-Type: text/plain; charset=UTF-8\n"
@@ -465,8 +465,8 @@ msgid ""
465465
"integer part of the true quotient (truncating towards zero) rather than its "
466466
"floor, so as to preserve the usual identity ``x == (x // y) * y + x % y``::"
467467
msgstr ""
468-
"整数除算演算子 ``//`` も同様に、実際の商の切り捨てではなく (0に近付くように丸めた) 整数部分を返します。そうすることで通常の恒等式 ``x "
469-
"== (x // y) * y + x % y`` が保持されます::"
468+
"整数除算演算子 ``//`` も同様に、実際の商の切り捨てではなく (0に近付くように丸めた) 整数部分を返します。そのため通常の恒等式 ``x == "
469+
"(x // y) * y + x % y`` が維持されます::"
470470

471471
#: ../../library/decimal.rst:432
472472
msgid ""

library/operator.po

+5-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# E. Kawashima, 2017
1010
# Arihiro TAKASE, 2017
1111
# yuji takesue <taketakeyyy@gmail.com>, 2018
12-
# tomo, 2019
12+
# tomo, 2020
1313
#
1414
#, fuzzy
1515
msgid ""
@@ -18,7 +18,7 @@ msgstr ""
1818
"Report-Msgid-Bugs-To: \n"
1919
"POT-Creation-Date: 2020-05-31 09:25+0000\n"
2020
"PO-Revision-Date: 2017-02-16 23:20+0000\n"
21-
"Last-Translator: tomo, 2019\n"
21+
"Last-Translator: tomo, 2020\n"
2222
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
2323
"MIME-Version: 1.0\n"
2424
"Content-Type: text/plain; charset=UTF-8\n"
@@ -185,7 +185,9 @@ msgstr "``a - b`` を返します。"
185185
msgid ""
186186
"Return ``a / b`` where 2/3 is .66 rather than 0. This is also known as "
187187
"\"true\" division."
188-
msgstr "2/3 が 0 ではなく 0.66 となるような ``a / b`` を返します。 \"真の\" 除算としても知られています。"
188+
msgstr ""
189+
"2/3 が 0 ではなく 0.66 となるような ``a / b`` を返します。\n"
190+
"\"真の\" 除算としても知られています。"
189191

190192
#: ../../library/operator.rst:196
191193
msgid "Return the bitwise exclusive or of *a* and *b*."

0 commit comments

Comments
 (0)