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

Skip to content

Commit 60b9e4c

Browse files
[po] auto sync
1 parent 4fe9997 commit 60b9e4c

File tree

3 files changed

+16
-6
lines changed

3 files changed

+16
-6
lines changed

.stat.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"translation": "93.50%", "updated_at": "2024-10-04T18:48:59Z"}
1+
{"translation": "93.51%", "updated_at": "2024-10-06T14:47:07Z"}

whatsnew/2.0.po

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,18 @@
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
66
# Translators:
7-
# Unknownuserfrommars, 2024
87
# Freesand Leo <[email protected]>, 2024
98
# Rafael Fontenelle <[email protected]>, 2024
9+
# Unknownuserfrommars, 2024
1010
#
1111
#, fuzzy
1212
msgid ""
1313
msgstr ""
1414
"Project-Id-Version: Python 3.12\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2024-09-06 15:04+0000\n"
16+
"POT-Creation-Date: 2024-10-04 14:53+0000\n"
1717
"PO-Revision-Date: 2024-05-11 00:34+0000\n"
18-
"Last-Translator: Rafael Fontenelle <[email protected]>, 2024\n"
18+
"Last-Translator: Unknownuserfrommars, 2024\n"
1919
"Language-Team: Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n"
2020
"MIME-Version: 1.0\n"
2121
"Content-Type: text/plain; charset=UTF-8\n"
@@ -1724,6 +1724,9 @@ msgid ""
17241724
"print perslist[0].toxml()\n"
17251725
"print perslist[1].toxml()"
17261726
msgstr ""
1727+
"perslist = doc.getElementsByTagName( 'PERSONA' )\n"
1728+
"print perslist[0].toxml()\n"
1729+
"print perslist[1].toxml()"
17271730

17281731
#: ../../whatsnew/2.0.rst:977
17291732
msgid "For the *Hamlet* XML file, the above few lines output::"

whatsnew/2.3.po

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
# Translators:
77
# Unknownuserfrommars, 2024
88
# 钟旭尧 <[email protected]>, 2024
9-
# Freesand Leo <[email protected]>, 2024
109
# Rafael Fontenelle <[email protected]>, 2024
10+
# Freesand Leo <[email protected]>, 2024
1111
#
1212
#, fuzzy
1313
msgid ""
@@ -16,7 +16,7 @@ msgstr ""
1616
"Report-Msgid-Bugs-To: \n"
1717
"POT-Creation-Date: 2024-10-04 14:53+0000\n"
1818
"PO-Revision-Date: 2024-05-11 00:34+0000\n"
19-
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
19+
"Last-Translator: Freesand Leo <yuqinju@163.com>, 2024\n"
2020
"Language-Team: Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n"
2121
"MIME-Version: 1.0\n"
2222
"Content-Type: text/plain; charset=UTF-8\n"
@@ -322,6 +322,13 @@ msgid ""
322322
" full explanation of the interaction between :keyword:`!yield` and "
323323
"exceptions.)"
324324
msgstr ""
325+
"当您调用生成器函数时,它不会返回一个单独的值;相反,它会返回一个支持迭代器协议的生成器对象。在执行 :keyword:`yield` "
326+
"语句时,生成器会输出 ``i`` 的值 ,类似于 :keyword:`return` 语句。 :keyword:`!yield` 与 "
327+
":keyword:`!return` 语句之间的最大区别在于,在到达 :keyword:`!yield` 时,生成器的执行状态会暂停,并保留本地变量。 "
328+
"在下一次调用生成器 的 ``.next()`` 方法时,函数将在 :keyword:`!yield` 语句之后立即恢复执行。 "
329+
"(由于复杂的原因,:keyword:`!yield` 语句不允许在 :keyword:`try`...\\ :keyword:`!finally` "
330+
"语句的 :keyword:`!try` 代码块内出现;有关 :keyword:`!yield` 和异常之间交互的完整解释,请阅读 "
331+
":pep:`255`。)"
325332

326333
#: ../../whatsnew/2.3.rst:169
327334
msgid "Here's a sample usage of the :func:`!generate_ints` generator::"

0 commit comments

Comments
 (0)