Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4d43833

Browse files
[po] auto sync
1 parent 856f1e9 commit 4d43833

6 files changed

Lines changed: 18 additions & 12 deletions

File tree

c-api/number.po

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
# Translators:
77
# Freesand Leo <[email protected]>, 2020
88
# 心韵 方 <[email protected]>, 2020
9+
# Azuk 443 <[email protected]>, 2020
910
#
1011
#, fuzzy
1112
msgid ""
@@ -14,7 +15,7 @@ msgstr ""
1415
"Report-Msgid-Bugs-To: \n"
1516
"POT-Creation-Date: 2020-02-09 12:40+0000\n"
1617
"PO-Revision-Date: 2020-05-30 11:50+0000\n"
17-
"Last-Translator: 心韵 方 <[email protected]>, 2020\n"
18+
"Last-Translator: Azuk 443 <[email protected]>, 2020\n"
1819
"Language-Team: Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n"
1920
"MIME-Version: 1.0\n"
2021
"Content-Type: text/plain; charset=UTF-8\n"
@@ -40,31 +41,31 @@ msgstr "如果 *o* 是一个索引整数则返回 ``1``。"
4041
msgid ""
4142
"Returns the result of adding *o1* and *o2*, or ``NULL`` on failure. This is"
4243
" the equivalent of the Python expression ``o1 + o2``."
43-
msgstr ""
44+
msgstr "返回 *o1* 、*o2* 相加的结果,如果失败,返回 *NULL* 。等价于 Python 中的表达式 ``o1 + o2`` 。"
4445

4546
#: ../../c-api/number.rst:26
4647
msgid ""
4748
"Returns the result of subtracting *o2* from *o1*, or ``NULL`` on failure. "
4849
"This is the equivalent of the Python expression ``o1 - o2``."
49-
msgstr ""
50+
msgstr "返回 *o1* 减去 *o2* 的结果,如果失败,返回 ``NULL`` 。等价于Python中的表达式 ``o1 - o2`` 。"
5051

5152
#: ../../c-api/number.rst:32
5253
msgid ""
5354
"Returns the result of multiplying *o1* and *o2*, or ``NULL`` on failure. "
5455
"This is the equivalent of the Python expression ``o1 * o2``."
55-
msgstr ""
56+
msgstr "返回 *o1* 、 *o2* 相乘的结果,如果失败,返回 ``NULL``。等价于Python中的表达式 ``o1 * o2``。"
5657

5758
#: ../../c-api/number.rst:38
5859
msgid ""
5960
"Returns the result of matrix multiplication on *o1* and *o2*, or ``NULL`` on"
6061
" failure. This is the equivalent of the Python expression ``o1 @ o2``."
61-
msgstr ""
62+
msgstr "返回 *o1* 、*o2* 做矩阵乘法的结果,如果失败,返回 ``NULL``。等价于Python中的表达式 ``o1 @ o2``。"
6263

6364
#: ../../c-api/number.rst:46
6465
msgid ""
6566
"Return the floor of *o1* divided by *o2*, or ``NULL`` on failure. This is "
6667
"equivalent to the \"classic\" division of integers."
67-
msgstr ""
68+
msgstr "返回 *o1* 除以 *o2* 的向下取整后的结果,如果失败,返回 ``NULL``。等价于“传统”的整数除法。"
6869

6970
#: ../../c-api/number.rst:52
7071
msgid ""
@@ -74,18 +75,21 @@ msgid ""
7475
" represent all real numbers in base two. This function can return a "
7576
"floating point value when passed two integers."
7677
msgstr ""
78+
"返回 *o1* 除以 *o2* 的一个合理的近似值,如果失败,返回 "
79+
"``NULL``。这个值是近似的,因为二进制浮点数是一个近似值,它不可能表示出以2为基数的所有实数。这个函数返回两个整数相除得到的浮点数。"
7780

7881
#: ../../c-api/number.rst:61
7982
msgid ""
8083
"Returns the remainder of dividing *o1* by *o2*, or ``NULL`` on failure. "
8184
"This is the equivalent of the Python expression ``o1 % o2``."
82-
msgstr ""
85+
msgstr "返回 *o1* 除以 *o2* 得到的余数,如果失败,返回 ``NULL``。等价于Python中的表达式 ``o1 % o2``。"
8386

8487
#: ../../c-api/number.rst:69
8588
msgid ""
8689
"See the built-in function :func:`divmod`. Returns ``NULL`` on failure. This"
8790
" is the equivalent of the Python expression ``divmod(o1, o2)``."
8891
msgstr ""
92+
"参考内置函数 :func:`divmod`。如果失败,返回 ``NULL``。等价于Python表达式 ``divmod(o1, o2)``。"
8993

9094
#: ../../c-api/number.rst:77
9195
msgid ""

faq/gui.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# dgy18787 <[email protected]>, 2020
88
# Kade For, 2020
99
# Freesand Leo <[email protected]>, 2020
10-
# 443 <[email protected]>, 2020
10+
# Azuk 443 <[email protected]>, 2020
1111
# ppcfish <[email protected]>, 2020
1212
# Siyuan Xu <[email protected]>, 2020
1313
#

faq/windows.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# Translators:
77
# Freesand Leo <[email protected]>, 2020
88
# Meng Du <[email protected]>, 2020
9-
# 443 <[email protected]>, 2020
9+
# Azuk 443 <[email protected]>, 2020
1010
# musan cheng, 2020
1111
# ppcfish <[email protected]>, 2020
1212
#

library/logging.config.po

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -710,6 +710,8 @@ msgid ""
710710
"arguments used in the call. The ``'()'`` also serves as a mnemonic that the"
711711
" corresponding value is a callable."
712712
msgstr ""
713+
"将 ``'()'`` 用作特殊键是因为它不是一个有效的关键字形参名称,这样就不会与调用中使用的关键字参数发生冲突。 ``'()'`` "
714+
"还被用作表明对应值为可调用对象的助记符。"
713715

714716
#: ../../library/logging.config.rst:499
715717
msgid "Access to external objects"

library/othergui.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
66
# Translators:
7-
# 443 <[email protected]>, 2020
7+
# Azuk 443 <[email protected]>, 2020
88
# Freesand Leo <[email protected]>, 2020
99
#
1010
#, fuzzy

whatsnew/index.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
# Translators:
77
# Shengjing Zhu <[email protected]>, 2020
8-
# 443 <[email protected]>, 2020
8+
# Azuk 443 <[email protected]>, 2020
99
#
1010
#, fuzzy
1111
msgid ""
@@ -14,7 +14,7 @@ msgstr ""
1414
"Report-Msgid-Bugs-To: \n"
1515
"POT-Creation-Date: 2020-02-09 12:40+0000\n"
1616
"PO-Revision-Date: 2020-05-30 12:19+0000\n"
17-
"Last-Translator: 443 <[email protected]>, 2020\n"
17+
"Last-Translator: Azuk 443 <[email protected]>, 2020\n"
1818
"Language-Team: Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n"
1919
"MIME-Version: 1.0\n"
2020
"Content-Type: text/plain; charset=UTF-8\n"

0 commit comments

Comments
 (0)