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

Skip to content

Commit 299505b

Browse files
[po] auto sync
1 parent 0ef4516 commit 299505b

3 files changed

Lines changed: 11 additions & 9 deletions

File tree

library/stdtypes.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2643,7 +2643,7 @@ msgid ""
26432643
" are stripped::"
26442644
msgstr ""
26452645
"返回原字符串的副本,移除其中的前导字符。 *chars* 参数为指定要移除字符的字符串。 如果省略或为 ``None``,则 *chars* "
2646-
"参数默认移除空格符。 实际上 *chars* 参数并非指定单个前缀;而是会移除参数值的所有组合::"
2646+
"参数默认移除空白符。 实际上 *chars* 参数并非指定单个前缀;而是会移除参数值的所有组合::"
26472647

26482648
#: ../../library/stdtypes.rst:1832
26492649
msgid ""
@@ -2765,7 +2765,7 @@ msgid ""
27652765
" are stripped::"
27662766
msgstr ""
27672767
"返回原字符串的副本,移除其中的末尾字符。 *chars* 参数为指定要移除字符的字符串。 如果省略或为 ``None``,则 *chars* "
2768-
"参数默认移除空格符。 实际上 *chars* 参数并非指定单个后缀;而是会移除参数值的所有组合::"
2768+
"参数默认移除空白符。 实际上 *chars* 参数并非指定单个后缀;而是会移除参数值的所有组合::"
27692769

27702770
#: ../../library/stdtypes.rst:1948
27712771
msgid ""
@@ -2968,7 +2968,7 @@ msgid ""
29682968
" all combinations of its values are stripped::"
29692969
msgstr ""
29702970
"返回原字符串的副本,移除其中的前导和末尾字符。 *chars* 参数为指定要移除字符的字符串。 如果省略或为 ``None``,则 *chars* "
2971-
"参数默认移除空格符。 实际上 *chars* 参数并非指定单个前缀或后缀;而是会移除参数值的所有组合::"
2971+
"参数默认移除空白符。 实际上 *chars* 参数并非指定单个前缀或后缀;而是会移除参数值的所有组合::"
29722972

29732973
#: ../../library/stdtypes.rst:2083
29742974
msgid ""

tutorial/errors.po

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
# Junkai Shao <[email protected]>, 2018
1010
# Woostundy <[email protected]>, 2018
1111
# dannyvi <[email protected]>, 2019
12-
# Freesand Leo <[email protected]>, 2020
1312
# jaystone776 <[email protected]>, 2021
13+
# Freesand Leo <[email protected]>, 2021
1414
#
1515
#, fuzzy
1616
msgid ""
@@ -19,7 +19,7 @@ msgstr ""
1919
"Report-Msgid-Bugs-To: \n"
2020
"POT-Creation-Date: 2021-01-01 05:02+0000\n"
2121
"PO-Revision-Date: 2017-02-16 23:40+0000\n"
22-
"Last-Translator: jaystone776 <1732865113@qq.com>, 2021\n"
22+
"Last-Translator: Freesand Leo <yuqinju@163.com>, 2021\n"
2323
"Language-Team: Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n"
2424
"MIME-Version: 1.0\n"
2525
"Content-Type: text/plain; charset=UTF-8\n"
@@ -225,8 +225,8 @@ msgid ""
225225
"exception that wasn't raised by the code being protected by the "
226226
":keyword:`!try` ... :keyword:`!except` statement."
227227
msgstr ""
228-
"使用 :keyword:`!else` 子句比向 :keyword:`try` 子句添加额外的代码要好,因为它避免了意外捕获由 "
229-
":keyword:`!try` ... :keyword:`!except` 语句保护的代码未引发的异常。"
228+
"使用 :keyword:`!else` 子句比向 :keyword:`try` 子句添加额外的代码要好,因为它避免了意外捕获非 "
229+
":keyword:`!try` ... :keyword:`!except` 语句保护的代码引发的异常。"
230230

231231
#: ../../tutorial/errors.rst:188
232232
msgid ""

tutorial/modules.po

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
# ww song <[email protected]>, 2018
1010
# Junkai Shao <[email protected]>, 2018
1111
# jaystone776 <[email protected]>, 2021
12+
# Freesand Leo <[email protected]>, 2021
1213
#
1314
#, fuzzy
1415
msgid ""
@@ -17,7 +18,7 @@ msgstr ""
1718
"Report-Msgid-Bugs-To: \n"
1819
"POT-Creation-Date: 2021-01-01 05:02+0000\n"
1920
"PO-Revision-Date: 2017-02-16 23:41+0000\n"
20-
"Last-Translator: jaystone776 <1732865113@qq.com>, 2021\n"
21+
"Last-Translator: Freesand Leo <yuqinju@163.com>, 2021\n"
2122
"Language-Team: Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n"
2223
"MIME-Version: 1.0\n"
2324
"Content-Type: text/plain; charset=UTF-8\n"
@@ -196,7 +197,8 @@ msgid ""
196197
"with the ``__name__`` set to ``\"__main__\"``. That means that by adding "
197198
"this code at the end of your module::"
198199
msgstr ""
199-
"这项操作将执行模块里的代码,和导入模块一样,但会把 ``__name__`` 赋值给 ``\"__main__\"``。即,把下列代码添加到模块末尾:"
200+
"这项操作将执行模块里的代码,和导入模块一样,但会把 ``__name__`` 赋值为 ``\"__main__\"``。 "
201+
"也就是把下列代码添加到模块末尾:"
200202

201203
#: ../../tutorial/modules.rst:160
202204
msgid ""

0 commit comments

Comments
 (0)