Skip to content

Commit 51f5136

Browse files
[po] auto sync
1 parent d98ffbc commit 51f5136

File tree

3 files changed

+23
-7
lines changed

3 files changed

+23
-7
lines changed

.stat.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"translation": "99.98%", "updated_at": "2025-11-26T00:44:20Z"}
1+
{"translation": "99.99%", "updated_at": "2025-11-26T01:42:20Z"}

c-api/veryhigh.po

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -548,11 +548,11 @@ msgstr ":py:func:`dis.stack_effect`"
548548

549549
#: ../../c-api/veryhigh.rst:410
550550
msgid "Sentinel value representing an invalid stack effect."
551-
msgstr ""
551+
msgstr "代表无效栈影响的哨兵值。"
552552

553553
#: ../../c-api/veryhigh.rst:412
554554
msgid "This is currently equivalent to ``INT_MAX``."
555-
msgstr ""
555+
msgstr "目前这等价于 ``INT_MAX``。"
556556

557557
#: ../../c-api/veryhigh.rst:419
558558
msgid "Compute the stack effect of *opcode* with argument *oparg*."
@@ -562,19 +562,19 @@ msgstr "使用参数 *oparg* 计算 *opcode* 的堆栈效果。"
562562
msgid ""
563563
"On success, this function returns the stack effect; on failure, this returns"
564564
" :c:macro:`PY_INVALID_STACK_EFFECT`."
565-
msgstr ""
565+
msgstr "成功时,此函数返回栈影响;失败时,则返回 :c:macro:`PY_INVALID_STACK_EFFECT`。"
566566

567567
#: ../../c-api/veryhigh.rst:429
568568
msgid ""
569569
"Similar to :c:func:`PyCompile_OpcodeStackEffect`, but don't include the "
570570
"stack effect of jumping if *jump* is zero."
571-
msgstr ""
571+
msgstr "类似于 :c:func:`PyCompile_OpcodeStackEffect`,但不包括当 *jump* 为零时的跳转的栈影响。"
572572

573573
#: ../../c-api/veryhigh.rst:432
574574
msgid ""
575575
"If *jump* is ``0``, this will not include the stack effect of jumping, but "
576576
"if *jump* is ``1`` or ``-1``, this will include it."
577-
msgstr ""
577+
msgstr "如果 *jump* 为 ``0``,这将不包括跳转的栈影响,但如果 *jump* 为 ``1`` 或 ``-1``,这将会包括它。"
578578

579579
#: ../../c-api/veryhigh.rst:360 ../../c-api/veryhigh.rst:368
580580
#: ../../c-api/veryhigh.rst:377 ../../c-api/veryhigh.rst:386

library/stdtypes.po

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3557,6 +3557,9 @@ msgid ""
35573557
"INDIC DIGIT ZERO. Formally a decimal character is a character in the "
35583558
"Unicode General Category \"Nd\". For example:"
35593559
msgstr ""
3560+
"如果字符串中的所有字符都是十进制数码字符且至少有一个字符则返回 ``True``,否则返回 ``False``。 十进制数码字符指那些可以用于组成以 "
3561+
"10 为基数的数字的字符,如 U+0660, ARABIC-INDIC DIGIT ZERO。 正式地说十进制数码字符就是属于 Unicode 通用类别"
3562+
" \"Nd\" 的字符。 例如:"
35603563

35613564
#: ../../library/stdtypes.rst:2105
35623565
msgid ""
@@ -3567,6 +3570,12 @@ msgid ""
35673570
">>> 'alphabetic'.isdecimal()\n"
35683571
"False"
35693572
msgstr ""
3573+
">>> '0123456789'.isdecimal()\n"
3574+
"True\n"
3575+
">>> '٠١٢٣٤٥٦٧٨٩'.isdecimal() # 阿拉伯-印度数字零至九\n"
3576+
"True\n"
3577+
">>> 'alphabetic'.isdecimal()\n"
3578+
"False"
35703579

35713580
#: ../../library/stdtypes.rst:2117
35723581
msgid ""
@@ -3725,6 +3734,9 @@ msgid ""
37253734
"*iterable*, including :class:`bytes` objects. The separator between "
37263735
"elements is the string providing this method. For example:"
37273736
msgstr ""
3737+
"返回一个由Return a string which is the concatenation of the strings in *iterable*"
3738+
" 中的字符串拼接而成的字符串。 如果 *iterable* 中存在任何非字符串值包括 :class:`bytes` 对象则会引发 "
3739+
":exc:`TypeError`。 元素之前的分隔符将为提供此方法的字符串。 例如:"
37283740

37293741
#: ../../library/stdtypes.rst:2233
37303742
msgid ""
@@ -3733,10 +3745,14 @@ msgid ""
37333745
">>> '-'.join('Python')\n"
37343746
"'P-y-t-h-o-n'"
37353747
msgstr ""
3748+
">>> ', '.join(['spam', 'spam', 'spam'])\n"
3749+
"'spam, spam, spam'\n"
3750+
">>> '-'.join('Python')\n"
3751+
"'P-y-t-h-o-n'"
37363752

37373753
#: ../../library/stdtypes.rst:2240
37383754
msgid "See also :meth:`split`."
3739-
msgstr ""
3755+
msgstr "另请参阅 :meth:`split`。"
37403756

37413757
#: ../../library/stdtypes.rst:2245
37423758
msgid ""

0 commit comments

Comments
 (0)