Skip to content

Commit c51fad6

Browse files
[po] auto sync
1 parent 6d2291a commit c51fad6

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

.stat.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"translation": "95.38%", "updated_at": "2024-05-08T08:56:51Z"}
1+
{"translation": "95.38%", "updated_at": "2024-05-09T15:56:13Z"}

reference/expressions.po

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -14,24 +14,24 @@
1414
# Alpha Du <alphanow@gmail.com>, 2022
1515
# Bryan不可思议, 2023
1616
# cissoid <yangtukun1412@gmail.com>, 2023
17-
# Jiuh-star <jiuh.star@gmail.com>, 2023
17+
# Jiuh.star <jiuh.star@gmail.com>, 2023
1818
# Shengjing Zhu <zsj950618@gmail.com>, 2023
1919
# ppcfish <ppcfish@gmail.com>, 2023
2020
# helloworldSB <warningfor163@foxmail.com>, 2023
2121
# sgqy <sgqyzh@gmail.com>, 2023
2222
# Y. Z. Chen <754097987@qq.com>, 2023
23-
# WH-2099 <wh2099@outlook.com>, 2023
2423
# Dai Xu <daixu61@hotmail.com>, 2023
2524
# Freesand Leo <yuqinju@163.com>, 2024
25+
# WH-2099 <wh2099@outlook.com>, 2024
2626
#
2727
#, fuzzy
2828
msgid ""
2929
msgstr ""
3030
"Project-Id-Version: Python 3.12\n"
3131
"Report-Msgid-Bugs-To: \n"
32-
"POT-Creation-Date: 2024-03-01 14:13+0000\n"
32+
"POT-Creation-Date: 2024-05-04 01:27+0000\n"
3333
"PO-Revision-Date: 2021-06-28 01:49+0000\n"
34-
"Last-Translator: Freesand Leo <yuqinju@163.com>, 2024\n"
34+
"Last-Translator: WH-2099 <wh2099@outlook.com>, 2024\n"
3535
"Language-Team: Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n"
3636
"MIME-Version: 1.0\n"
3737
"Content-Type: text/plain; charset=UTF-8\n"
@@ -642,7 +642,7 @@ msgid ""
642642
"expression on the right hand side of an assignment statement."
643643
msgstr "当yield表达式是赋值语句右侧的唯一表达式时,括号可以省略。"
644644

645-
#: ../../reference/expressions.rst:512
645+
#: ../../reference/expressions.rst:511
646646
msgid ":pep:`255` - Simple Generators"
647647
msgstr ":pep:`255` - 简单生成器"
648648

@@ -652,7 +652,7 @@ msgid ""
652652
"Python."
653653
msgstr "在 Python 中加入生成器和 :keyword:`yield` 语句的提议。"
654654

655-
#: ../../reference/expressions.rst:516
655+
#: ../../reference/expressions.rst:514
656656
msgid ":pep:`342` - Coroutines via Enhanced Generators"
657657
msgstr ":pep:`342` - 通过增强型生成器实现协程"
658658

@@ -662,7 +662,7 @@ msgid ""
662662
" as simple coroutines."
663663
msgstr "增强生成器 API 和语法的提议,使其可以被用作简单的协程。"
664664

665-
#: ../../reference/expressions.rst:520
665+
#: ../../reference/expressions.rst:518
666666
msgid ":pep:`380` - Syntax for Delegating to a Subgenerator"
667667
msgstr ":pep:`380` - 委托给子生成器的语法"
668668

@@ -672,7 +672,7 @@ msgid ""
672672
"making delegation to subgenerators easy."
673673
msgstr "引入 :token:`~python-grammar:yield_from` 语法的提议,以方便地委托给子生成器。"
674674

675-
#: ../../reference/expressions.rst:523
675+
#: ../../reference/expressions.rst:522
676676
msgid ":pep:`525` - Asynchronous Generators"
677677
msgstr ":pep:`525` - 异步生成器"
678678

@@ -880,10 +880,10 @@ msgid ""
880880
"the resulting coroutine object, thus allowing any pending "
881881
":keyword:`!finally` clauses to execute."
882882
msgstr ""
883-
"在异步生成器函数中,yield 表达式允许出现在 :keyword:`try` 结构的任何位置。 "
884-
"但是,如果一个异步生成器在其被终结(由于引用计数达到零或被作为垃圾回收)之前未被恢复,则then a yield expression within a"
885-
" :keyword:`!try` 结构中的 yield 表达式可能导致挂起的 :keyword:`finally` 子句执行失败。 "
886-
"在此情况下,应由运行该异步生成器的事件循环或任务调度器来负责调用异步生成器-迭代器的 :meth:`~agen.aclose` "
883+
"在异步生成器函数中,yield 表达式允许出现在 :keyword:`try` "
884+
"结构的任何位置。但是,如果一个异步生成器在其被终结(由于引用计数达到零或被作为垃圾回收)之前未被恢复,则 :keyword:`!try` 结构中的 "
885+
"yield 表达式可能导致挂起的 :keyword:`finally` "
886+
"子句执行失败。在此情况下,应由运行该异步生成器的事件循环或任务调度器来负责调用异步生成器-迭代器的 :meth:`~agen.aclose` "
887887
"方法并运行所返回的协程对象,从而允许任何挂起的 :keyword:`!finally` 子句得以执行。"
888888

889889
#: ../../reference/expressions.rst:693
@@ -1369,7 +1369,7 @@ msgstr "除非引发了异常,调用总是会有返回值,返回值也可能
13691369
msgid "If it is---"
13701370
msgstr "如果类型为---"
13711371

1372-
#: ../../reference/expressions.rst:1117
1372+
#: ../../reference/expressions.rst:1106
13731373
msgid "a user-defined function:"
13741374
msgstr "用户自定义函数:"
13751375

@@ -1384,7 +1384,7 @@ msgstr ""
13841384
"函数的代码块会被执行,并向其传入参数列表。 代码块所做的第一件事是将正式形参绑定到对应参数;相关描述参见 :ref:`function` 一节。 "
13851385
"当代码块执行 :keyword:`return` 语句时,由其指定函数调用的返回值。"
13861386

1387-
#: ../../reference/expressions.rst:1131
1387+
#: ../../reference/expressions.rst:1119
13881388
msgid "a built-in function or method:"
13891389
msgstr "内置函数或方法:"
13901390

@@ -1394,15 +1394,15 @@ msgid ""
13941394
"descriptions of built-in functions and methods."
13951395
msgstr "具体结果依赖于解释器;有关内置函数和方法的描述参见 :ref:`built-in-funcs`。"
13961396

1397-
#: ../../reference/expressions.rst:1138
1397+
#: ../../reference/expressions.rst:1133
13981398
msgid "a class object:"
13991399
msgstr "类对象:"
14001400

14011401
#: ../../reference/expressions.rst:1138
14021402
msgid "A new instance of that class is returned."
14031403
msgstr "返回该类的一个新实例。"
14041404

1405-
#: ../../reference/expressions.rst:1148
1405+
#: ../../reference/expressions.rst:1140
14061406
msgid "a class instance method:"
14071407
msgstr "类实例方法:"
14081408

@@ -1413,7 +1413,7 @@ msgid ""
14131413
"the first argument."
14141414
msgstr "调用相应的用户自定义函数,向其传入的参数列表会比调用的参数列表多一项:该实例将成为第一个参数。"
14151415

1416-
#: ../../reference/expressions.rst:1157
1416+
#: ../../reference/expressions.rst:1150
14171417
msgid "a class instance:"
14181418
msgstr "类实例:"
14191419

0 commit comments

Comments
 (0)