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

Skip to content

Commit 3e43168

Browse files
[po] auto sync
1 parent 73480cf commit 3e43168

3 files changed

Lines changed: 15 additions & 6 deletions

File tree

library/bisect.po

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
#
66
# Translators:
77
# Woko <[email protected]>, 2021
8-
# Freesand Leo <[email protected]>, 2021
98
# nick <[email protected]>, 2021
109
# iceyasha <[email protected]>, 2021
10+
# Freesand Leo <[email protected]>, 2021
1111
#
1212
#, fuzzy
1313
msgid ""
@@ -16,7 +16,7 @@ msgstr ""
1616
"Report-Msgid-Bugs-To: \n"
1717
"POT-Creation-Date: 2021-06-29 12:56+0000\n"
1818
"PO-Revision-Date: 2021-06-28 00:56+0000\n"
19-
"Last-Translator: iceyasha <IceYasha@gmail.com>, 2021\n"
19+
"Last-Translator: Freesand Leo <yuqinju@163.com>, 2021\n"
2020
"Language-Team: Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n"
2121
"MIME-Version: 1.0\n"
2222
"Content-Type: text/plain; charset=UTF-8\n"
@@ -68,6 +68,8 @@ msgid ""
6868
" that ``all(val < x for val in a[lo : i])`` for the left side and ``all(val "
6969
">= x for val in a[i : hi])`` for the right side."
7070
msgstr ""
71+
"返回的插入点 *i* 将数组 *a* 分成两半,使得 ``all(val < x for val in a[lo : i])`` 在左半边而 "
72+
"``all(val >= x for val in a[i : hi])`` 在右半边。"
7173

7274
#: ../../library/bisect.rst:37 ../../library/bisect.rst:55
7375
#: ../../library/bisect.rst:67 ../../library/bisect.rst:88
@@ -82,7 +84,7 @@ msgstr ""
8284
#: ../../library/bisect.rst:41 ../../library/bisect.rst:59
8385
#: ../../library/bisect.rst:78 ../../library/bisect.rst:99
8486
msgid "Added the *key* parameter."
85-
msgstr ""
87+
msgstr "增加了 *key* 形参。"
8688

8789
#: ../../library/bisect.rst:48
8890
msgid ""

tutorial/controlflow.po

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -321,6 +321,8 @@ msgid ""
321321
"guard is false, ``match`` goes on to try the next case block. Note that "
322322
"value capture happens before the guard is evaluated::"
323323
msgstr ""
324+
"我们可以向一个模式添加 ``if`` 子句,称为“守护项”。 如果守护项为假值,则 ``match`` 将继续尝试下一个 case 语句块。 "
325+
"请注意值的捕获发生在守护项被求值之前。::"
324326

325327
#: ../../tutorial/controlflow.rst:367
326328
msgid "Several other key features of this statement:"

whatsnew/3.10.po

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -642,31 +642,36 @@ msgid ""
642642
"statement. A wildcard can be used in more complex patterns, such as "
643643
"``('error', code, _)``. For example::"
644644
msgstr ""
645+
"到目前为止,这些例子仅在最后一个 case 语句中使用了 ``_``。 但通配符可以被用在更复杂的模式中,例如 ``('error', code, "
646+
"_)``。 举例来说::"
645647

646648
#: ../../whatsnew/3.10.rst:622
647649
msgid ""
648650
"In the above case, ``test_variable`` will match for ('error', code, 100) and"
649651
" ('error', code, 800)."
650652
msgstr ""
653+
"在上述情况下,``test_variable`` 将可匹配 ('error', code, 100) 和 ('error', code, 800)。"
651654

652655
#: ../../whatsnew/3.10.rst:626
653656
msgid "Guard"
654-
msgstr ""
657+
msgstr "守护项"
655658

656659
#: ../../whatsnew/3.10.rst:628
657660
msgid ""
658661
"We can add an ``if`` clause to a pattern, known as a \"guard\". If the "
659662
"guard is false, ``match`` goes on to try the next case block. Note that "
660663
"value capture happens before the guard is evaluated::"
661664
msgstr ""
665+
"我们可以向一个模式添加 ``if`` 子句,称为“守护项”。 如果守护项为假值,则 ``match`` 将继续尝试下一个 case 语句块。 "
666+
"请注意值的捕获发生在守护项被求值之前。::"
662667

663668
#: ../../whatsnew/3.10.rst:639
664669
msgid "Other Key Features"
665-
msgstr ""
670+
msgstr "其他关键特性"
666671

667672
#: ../../whatsnew/3.10.rst:641
668673
msgid "Several other key features:"
669-
msgstr ""
674+
msgstr "一些其他关键特性:"
670675

671676
#: ../../whatsnew/3.10.rst:643
672677
msgid ""

0 commit comments

Comments
 (0)