8000 [po] auto sync · python/python-docs-zh-cn@b8ce4bc · GitHub
[go: up one dir, main page]

Skip to content

Commit b8ce4bc

Browse files
[po] auto sync
1 parent 7f4305d commit b8ce4bc

File tree

2 files changed

+17
-15
lines changed

2 files changed

+17
-15
lines changed

.stat.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"translation": "91.97%", "updated_at": "2024-03-10T08:24:21Z"}
1+
{"translation": "91.97%", "updated_at": "2024-03-10T15:20:48Z"}

library/asyncio-task.po

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
# SOME DESCRIPTIVE TITLE.
2-
# Copyright (C) 2001-2022, Python Software Foundation
2+
# Copyright (C) 2001-2024, Python Software Foundation
33
# This file is distributed under the same license as the Python package.
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
66
# Translators:
7-
# Shengjing Zhu <zsj950618@gmail.com>, 2018
87
# walkinrain <walkinrain2008@outlook.com>, 2019
98
# MuSheng Chen <sheng.2179@gmail.com>, 2019
109
# techmoe <i+transifex@lolicookie.com>, 2021
11-
# Freesand Leo <yuqinju@163.com>, 2022
10+
# Rafael Fontenelle <rffontenelle@gmail.com>, 2023
11+
# Freesand Leo <yuqinju@163.com>, 2024
1212
#
1313
#, fuzzy
1414
msgid ""
1515
msgstr ""
1616
"Project-Id-Version: Python 3.9\n"
1717
"Report-Msgid-Bugs-To: \n"
18-
"POT-Creation-Date: 2022-11-04 14:34+0000\n"
18+
"POT-Creation-Date: 2024-03-08 18:35+0000\n"
1919
"PO-Revision-Date: 2017-02-16 17:49+0000\n"
20-
"Last-Translator: Freesand Leo <yuqinju@163.com>, 2022\n"
21-
"Language-Team: Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n"
20+
"Last-Translator: Freesand Leo <yuqinju@163.com>, 2024\n"
21+
"Language-Team: Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n"
2222
"MIME-Version: 1.0\n"
2323
"Content-Type: text/plain; charset=UTF-8\n"
2424
"Content-Transfer-Encoding: 8bit\n"
@@ -69,7 +69,7 @@ msgid ""
6969
"Awaiting on a coroutine. The following snippet of code will print \"hello\""
7070
" after waiting for 1 second, and then print \"world\" after waiting for "
7171
"*another* 2 seconds::"
72-
msgstr "等待一个协程。以下代码段会在等待 1 秒后打印 \"hello\",然后 *再次* 等待 2 秒后打印 \"world\"::"
72+
msgstr "对协程执行 await。以下代码段会在等待 1 秒后打印 \"hello\",然后 *再次* 等待 2 秒后打印 \"world\"::"
7373

7474
#: ../../library/asyncio-task.rst:69
7575
msgid "Expected output::"
@@ -157,7 +157,7 @@ msgstr "当一个协程通过 :func:`asyncio.create_task` 等函数被封装为
157157

158158
#: ../../library/asyncio-task.rst:181
159159
msgid "Futures"
160-
msgstr "Future 对象"
160+
msgstr "Futures"
161161

162162
#: ../../library/asyncio-task.rst:182
163163
msgid ""
@@ -506,7 +506,7 @@ msgstr "返回两个 Task/Future 集合: ``(done, pending)``。"
506506

507507
#: ../../library/asyncio-task.rst:511
508508
msgid "Usage::"
509-
msgstr "用法::"
509+
msgstr "用法"
510510

511511
#: ../../library/asyncio-task.rst:515
512512
msgid ""
@@ -530,7 +530,7 @@ msgstr "*return_when* 指定此函数应在何时返回。它必须为以下常
530530

531531
#: ../../library/asyncio-task.rst:528
532532
msgid "Constant"
533-
msgstr "常数"
533+
msgstr "常量"
534534

535535
#: ../../library/asyncio-task.rst:528
536536
msgid "Description"
@@ -691,13 +691,14 @@ msgstr "如果在协程内产生了异常,将会通知返回的 Future 对象
691691
msgid ""
692692
"See the :ref:`concurrency and multithreading <asyncio-multithreading>` "
693693
"section of the documentation."
694-
msgstr "查看 :ref:`并发和多线程<asyncio-multithreading>` 章节的文档。"
694+
msgstr ""
695+
"参见 :ref:`concurrency and multithreading <asyncio-multithreading>` 部分的文档。"
695696

696697
#: ../../library/asyncio-task.rst:708
697698
msgid ""
698699
"Unlike other asyncio functions this function requires the *loop* argument to"
699700
" be passed explicitly."
700-
msgstr "不同与其他 asyncio 函数,此函数要求显式地传入 *loop* 参数。"
701+
msgstr "不同于其他 asyncio 函数,此函数要求显式地传入 *loop* 参数。"
701702

702703
#: ../../library/asyncio-task.rst:715
703704
msgid "Introspection"
@@ -773,7 +774,8 @@ msgid ""
773774
"cancellation, the Future object will be cancelled."
774775
msgstr ""
775776
"要取消一个正在运行的 Task 对象可使用 :meth:`cancel` 方法。调用此方法将使该 Task 对象抛出一个 "
776-
":exc:`CancelledError` 异常给打包的协程。如果取消期间一个协程正在等待一个 Future 对象,该 Future 对象也将被取消。"
777+
":exc:`CancelledError` 异常给打包的协程。如果取消期间一个协程正在对 Future 对象执行 await,该 Future "
778+
"对象也将被取消。"
777779

778780
#: ../../library/asyncio-task.rst:769
779781
msgid ""
@@ -914,7 +916,7 @@ msgstr "要了解更多细节请查看 :meth:`Future.add_done_callback` 的文
914916

915917
#: ../../library/asyncio-task.rst:902
916918
msgid "Remove *callback* from the callbacks list."
917-
msgstr "从回调列表中移除 *callback* 指定的回调。"
919+
msgstr "从回调列表中移除 *callback* 。"
918920

919921
#: ../../library/asyncio-task.rst:906
920922
msgid ""

0 commit comments

Comments
 (0)
0