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

Skip to content

Commit c280c3b

Browse files
[po] auto sync
1 parent 9873854 commit c280c3b

3 files changed

Lines changed: 17 additions & 6 deletions

File tree

library/base64.po

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
# Saiyang Gou <[email protected]>, 2021
88
# walkinrain <[email protected]>, 2021
99
# ppcfish <[email protected]>, 2021
10-
# Freesand Leo <[email protected]>, 2021
1110
# Zombie110year <[email protected]>, 2021
11+
# Freesand Leo <[email protected]>, 2021
1212
#
1313
#, fuzzy
1414
msgid ""
@@ -17,7 +17,7 @@ msgstr ""
1717
"Report-Msgid-Bugs-To: \n"
1818
"POT-Creation-Date: 2021-08-13 13:42+0000\n"
1919
"PO-Revision-Date: 2021-06-28 00:55+0000\n"
20-
"Last-Translator: Zombie110year <zombie110year@gmail.com>, 2021\n"
20+
"Last-Translator: Freesand Leo <yuqinju@163.com>, 2021\n"
2121
"Language-Team: Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n"
2222
"MIME-Version: 1.0\n"
2323
"Content-Type: text/plain; charset=UTF-8\n"
@@ -41,6 +41,8 @@ msgid ""
4141
"which defines the Base16, Base32, and Base64 algorithms, and for the de-"
4242
"facto standard Ascii85 and Base85 encodings."
4343
msgstr ""
44+
"此模块提供了将二进制数据编码为可打印的 ASCII 字符以及将这种编码格式解码回二进制数据的函数。 它为 :rfc:`4648` 所定义的 "
45+
"Base16, Base32 和 Base64 算法及已成为事实标准的 Ascii85 和 Base85 编码格式提供了编码和解码函数。"
4446

4547
#: ../../library/base64.rst:22
4648
msgid ""
@@ -49,6 +51,8 @@ msgid ""
4951
"an HTTP POST request. The encoding algorithm is not the same as the "
5052
":program:`uuencode` program."
5153
msgstr ""
54+
":rfc:`4648` 中的编码格式适用于编码二进制数据使得它能安全地通过电子邮件发送、用作 URL 的一部分,或者包括在 HTTP POST "
55+
"请求之中。 此编码格式算法与 :program:`uuencode` 程序并不相同。"
5256

5357
#: ../../library/base64.rst:27
5458
msgid ""
@@ -58,6 +62,9 @@ msgid ""
5862
"or strings containing ASCII to :class:`bytes`. Both base-64 alphabets "
5963
"defined in :rfc:`4648` (normal, and URL- and filesystem-safe) are supported."
6064
msgstr ""
65+
"此模块提供了两个接口。 较新的接口支持将 :term:`字节类对象 <bytes-like object>` 编码为 ASCII "
66+
":class:`bytes`,以及将 :term:`字节类对象 <bytes-like object>` 或包含 ASCII 的字符串解码为 "
67+
":class:`bytes`。 在 :rfc:`4648` 中定义的几种 base-64 字母表(普通的以及 URL 和文件系统安全的)都受到支持。"
6168

6269
#: ../../library/base64.rst:33
6370
msgid ""
@@ -403,7 +410,7 @@ msgid ""
403410
"A new security considerations section was added to :rfc:`4648` (section 12);"
404411
" it's recommended to review the security section for any code deployed to "
405412
"production."
406-
msgstr ""
413+
msgstr "在 :rfc:`4648` 中新增了安全事项部分(第 12 节);对于要部署到生产环境的任何代码都建议充分考虑此安全事项部分。"
407414

408415
#: ../../library/base64.rst:301
409416
msgid "Module :mod:`binascii`"

library/pty.po

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ msgid ""
4343
"tested on Linux, FreeBSD, and macOS (it is supposed to work on other POSIX "
4444
"platforms but it's not been thoroughly tested)."
4545
msgstr ""
46+
"伪终端处理高度依赖于具体平台。 此代码主要针对 Linux, FreeBSD 和 macOS 进行了测试(它应当也能在其他 POSIX "
47+
"平台上工作,但是未经充分测试)。"
4648

4749
#: ../../library/pty.rst:23
4850
msgid "The :mod:`pty` module defines the following functions:"
@@ -85,6 +87,8 @@ msgid ""
8587
"from the child to STDOUT of the current process. It is not signaled to the "
8688
"child if STDIN of the current process closes down."
8789
msgstr ""
90+
"将当前进程的 STDIN 拷贝到子进程并将从子进程接收的数据拷贝到当前进程的 STDOUT 的循环。 如果当前进程的 STDIN "
91+
"关闭则它不会向子进程发信号。"
8892

8993
#: ../../library/pty.rst:54
9094
msgid ""

reference/datamodel.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3596,7 +3596,7 @@ msgstr "Python :keyword:`with` 语句的规范描述、背景和示例。"
35963596

35973597
#: ../../reference/datamodel.rst:2596
35983598
msgid "Customizing positional arguments in class pattern matching"
3599-
msgstr ""
3599+
msgstr "定制类模式匹配中的位置参数"
36003600

36013601
#: ../../reference/datamodel.rst:2598
36023602
msgid ""
@@ -3627,11 +3627,11 @@ msgstr ""
36273627

36283628
#: ../../reference/datamodel.rst:2621
36293629
msgid ":pep:`634` - Structural Pattern Matching"
3630-
msgstr ""
3630+
msgstr ":pep:`634` - 结构化模式匹配"
36313631

36323632
#: ../../reference/datamodel.rst:2622
36333633
msgid "The specification for the Python ``match`` statement."
3634-
msgstr ""
3634+
msgstr "有关 Python ``match`` 语句的规范说明。"
36353635

36363636
#: ../../reference/datamodel.rst:2628
36373637
msgid "Special method lookup"

0 commit comments

Comments
 (0)