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

Skip to content

Commit dc449f8

Browse files
[po] auto sync
1 parent ef59d5b commit dc449f8

6 files changed

Lines changed: 31 additions & 8 deletions

File tree

library/asyncio-dev.po

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,11 @@ msgid ""
201201
"with a :class:`concurrent.futures.ProcessPoolExecutor` to execute code in a "
202202
"different process."
203203
msgstr ""
204+
"目前没有什么办法能直接从另一个进程 (例如通过 :mod:`multiprocessing` 启动的进程) 安排协程或回调。 :ref:`事件循环方法 "
205+
"<asyncio-event-loop>` 小节列出了可以从管道读取并监视文件描述符而不会阻塞事件循环的 API。 此外,asyncio 的 "
206+
":ref:`子进程 <asyncio-subprocess>` API 提供了一种启动进程并从事件循环与其通信的办法。 最后,之前提到的 "
207+
":meth:`loop.run_in_executor` 方法也可配合 "
208+
":class:`concurrent.futures.ProcessPoolExecutor` 使用以在另一个进程中执行代码。"
204209

205210
#: ../../library/asyncio-dev.rst:124
206211
msgid "Running Blocking Code"

library/glob.po

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
# Translators:
77
# Arisaka97 <[email protected]>, 2020
88
# Zombie110year <[email protected]>, 2020
9-
# Freesand Leo <[email protected]>, 2020
109
# ppcfish <[email protected]>, 2020
10+
# Freesand Leo <[email protected]>, 2020
1111
#
1212
#, fuzzy
1313
msgid ""
@@ -16,7 +16,7 @@ msgstr ""
1616
"Report-Msgid-Bugs-To: \n"
1717
"POT-Creation-Date: 2020-09-05 14:59+0000\n"
1818
"PO-Revision-Date: 2020-05-30 12:03+0000\n"
19-
"Last-Translator: ppcfish <ppcfish@gmail.com>, 2020\n"
19+
"Last-Translator: Freesand Leo <yuqinju@163.com>, 2020\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"
@@ -71,6 +71,10 @@ msgid ""
7171
"satisfies conditions is removed or added during the call of this function, "
7272
"whether a path name for that file be included is unspecified."
7373
msgstr ""
74+
"返回匹配 *pathname* 的可能为空的路径名列表,其中的元素必须为包含路径信息的字符串。 *pathname* 可以是绝对路径 (如 "
75+
":file:`/usr/src/Python-1.5/Makefile`) 或相对路径 (如 "
76+
":file:`../../Tools/\\*/\\*.gif`),并且可包含 shell 风格的通配符。 结果也将包含无效的符号链接(与在 shell "
77+
"中一样)。 结果是否排序取决于具体文件系统。 如果某个符合条件的文件在调用此函数期间被移除或添加,是否包括该文件的路径是没有规定的。"
7478

7579
#: ../../library/glob.rst:53
7680
msgid ""

library/os.po

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
# Zombie110year <[email protected]>, 2020
2020
# sunsol s <[email protected]>, 2020
2121
# SKY H. <[email protected]>, 2020
22-
# Freesand Leo <[email protected]>, 2020
2322
# ChenYuan <[email protected]>, 2020
2423
# 林行众 <[email protected]>, 2020
24+
# Freesand Leo <[email protected]>, 2020
2525
#
2626
#, fuzzy
2727
msgid ""
@@ -30,7 +30,7 @@ msgstr ""
3030
"Report-Msgid-Bugs-To: \n"
3131
"POT-Creation-Date: 2020-09-05 14:59+0000\n"
3232
"PO-Revision-Date: 2020-05-30 12:07+0000\n"
33-
"Last-Translator: 林行众 <linxzh1989@gmail.com>, 2020\n"
33+
"Last-Translator: Freesand Leo <yuqinju@163.com>, 2020\n"
3434
"Language-Team: Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n"
3535
"MIME-Version: 1.0\n"
3636
"Content-Type: text/plain; charset=UTF-8\n"
@@ -2231,6 +2231,8 @@ msgid ""
22312231
" file is removed from or added to the directory during the call of this "
22322232
"function, whether a name for that file be included is unspecified."
22332233
msgstr ""
2234+
"返回一个包含由 *path* 指定目录中条目名称组成的列表。 该列表按任意顺序排列,并且不包括特殊条目 ``'.'`` 和 "
2235+
"``'..'``,即使它们存在于目录中。 如果有文件在调用此函数期间在被移除或添加到目录中,是否要包括该文件的名称并没有规定。"
22342236

22352237
#: ../../library/os.rst:1834
22362238
msgid ""
@@ -2709,6 +2711,9 @@ msgid ""
27092711
"creating the iterator, whether an entry for that file be included is "
27102712
"unspecified."
27112713
msgstr ""
2714+
"返回一个 :class:`os.DirEntry` 对象的迭代器,它们对应于由 *path* 指定目录中的条目。 "
2715+
"这些条目会以任意顺序生成,并且不包括特殊条目 ``'.'`` 和 ``'..'``。 "
2716+
"如果有文件在迭代器创建之后在目录中被移除或添加,是否要包括该文件对应的条目并没有规定。"
27122717

27132718
#: ../../library/os.rst:2242
27142719
msgid ""
@@ -3745,6 +3750,10 @@ msgid ""
37453750
"the *dirpath* directory during generating the lists, whether a name for that"
37463751
" file be included is unspecified."
37473752
msgstr ""
3753+
"*dirpath* 是表示目录路径的字符串。 *dirnames* 是 *dirpath* 中子目录名称组成的列表 (excluding ``'.'``"
3754+
" and ``'..'``)。 *filenames* 是 *dirpath* 中非目录文件名称组成的列表。 请注意列表中的名称不带路径部分。 要获取 "
3755+
"*dirpath* 中文件或目录的完整路径(以 *top* 打头),请执行 ``os.path.join(dirpath, name)``。 "
3756+
"列表是否排序取决于具体文件系统。 如果有文件或列表生成期间被移除或添加到 *dirpath* 目录中,是否要包括该文件的名称并没有规定。"
37483757

37493758
#: ../../library/os.rst:2995
37503759
msgid ""

library/pathlib.po

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -649,6 +649,8 @@ msgid ""
649649
"directory after creating the iterator, whether an path object for that file "
650650
"be included is unspecified."
651651
msgstr ""
652+
"子条目会以任意顺序生成,并且不包括特殊条目 ``'.'`` 和 ``'..'``。 "
653+
"如果有文件在迭代器创建之后在目录中被移除或添加,是否要包括该文件对应的路径对象并没有规定。"
652654

653655
#: ../../library/pathlib.rst:859
654656
msgid ""

library/py_compile.po

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#
66
# Translators:
77
# Sean Chao <[email protected]>, 2020
8+
# Freesand Leo <[email protected]>, 2020
89
#
910
#, fuzzy
1011
msgid ""
@@ -13,7 +14,7 @@ msgstr ""
1314
"Report-Msgid-Bugs-To: \n"
1415
"POT-Creation-Date: 2020-02-09 12:40+0000\n"
1516
"PO-Revision-Date: 2020-05-30 12:08+0000\n"
16-
"Last-Translator: Sean Chao <seanchao0804@gmail.com>, 2020\n"
17+
"Last-Translator: Freesand Leo <yuqinju@163.com>, 2020\n"
1718
"Language-Team: Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n"
1819
"MIME-Version: 1.0\n"
1920
"Content-Type: text/plain; charset=UTF-8\n"
@@ -199,8 +200,8 @@ msgstr ""
199200

200201
#: ../../library/py_compile.rst:147
201202
msgid "Module :mod:`compileall`"
202-
msgstr ""
203+
msgstr "模块 :mod:`compileall`"
203204

204205
#: ../../library/py_compile.rst:148
205206
msgid "Utilities to compile all Python source files in a directory tree."
206-
msgstr ""
207+
msgstr "编译一个目录树中所有 Python 源文件的工具。"

library/xml.po

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ msgid ""
4141
"data. If you need to parse untrusted or unauthenticated data see the :ref"
4242
":`xml-vulnerabilities` and :ref:`defusedxml-package` sections."
4343
msgstr ""
44+
"XML 模块对于错误或恶意构造的数据是不安全的。 如果你需要解析不受信任或未经身份验证的数据,请参阅 :ref:`xml-"
45+
"vulnerabilities` 和 :ref:`defusedxml-package` 部分。"
4446

4547
#: ../../library/xml.rst:25
4648
msgid ""
@@ -267,7 +269,7 @@ msgstr "PyPI上 `defusedxml`_ 的文档包含有关所有已知攻击向量的
267269

268270
#: ../../library/xml.rst:119
269271
msgid "The :mod:`defusedxml` Package"
270-
msgstr ""
272+
msgstr ":mod:`defusedxml` 包"
271273

272274
#: ../../library/xml.rst:121
273275
msgid ""

0 commit comments

Comments
 (0)