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

Skip to content

Commit 4b1b6a9

Browse files
[po] auto sync
1 parent a7a678d commit 4b1b6a9

3 files changed

Lines changed: 21 additions & 5 deletions

File tree

howto/descriptor.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -928,7 +928,7 @@ msgstr "如果你曾好奇常规方法中的 *self* 或类方法中的 *cls* 是
928928

929929
#: ../../howto/descriptor.rst:1133
930930
msgid "Other kinds of methods"
931-
msgstr ""
931+
msgstr "其他种类的方法"
932932

933933
#: ../../howto/descriptor.rst:1135
934934
msgid ""

library/collections.po

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# dannyvi <[email protected]>, 2019
1111
# Arisaka97 <[email protected]>, 2020
1212
# Jian Aijun <[email protected]>, 2020
13-
# Freesand Leo <[email protected]>, 2020
13+
# Freesand Leo <[email protected]>, 2021
1414
#
1515
#, fuzzy
1616
msgid ""
@@ -19,7 +19,7 @@ msgstr ""
1919
"Report-Msgid-Bugs-To: \n"
2020
"POT-Creation-Date: 2021-03-14 05:42+0000\n"
2121
"PO-Revision-Date: 2017-02-16 23:03+0000\n"
22-
"Last-Translator: Freesand Leo <[email protected]>, 2020\n"
22+
"Last-Translator: Freesand Leo <[email protected]>, 2021\n"
2323
"Language-Team: Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n"
2424
"MIME-Version: 1.0\n"
2525
"Content-Type: text/plain; charset=UTF-8\n"
@@ -261,6 +261,10 @@ msgid ""
261261
":meth:`~collections.ChainMap.new_child` method and the "
262262
":attr:`~collections.ChainMap.parents` property."
263263
msgstr ""
264+
"Django 中用于模板的 `Context class "
265+
"<https://github.com/django/django/blob/main/django/template/context.py>`_ "
266+
"是只读的映射链。 它还具有上下文推送和弹出特性,类似于 :meth:`~collections.ChainMap.new_child` 方法和 "
267+
":attr:`~collections.ChainMap.parents` 特征属性。"
264268

265269
#: ../../library/collections.rst:137
266270
msgid ""

library/email.header.po

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ msgstr "以下是 :class:`Header` 类描述:"
112112
msgid ""
113113
"Create a MIME-compliant header that can contain strings in different "
114114
"character sets."
115-
msgstr ""
115+
msgstr "创建符合 MIME 要求的标头,其中可包含不同字符集的字符串。"
116116

117117
#: ../../library/email.header.rst:65
118118
msgid ""
@@ -121,6 +121,9 @@ msgid ""
121121
":meth:`append` method calls. *s* may be an instance of :class:`bytes` or "
122122
":class:`str`, but see the :meth:`append` documentation for semantics."
123123
msgstr ""
124+
"可选的 *s* 是初始标头值。 如果为 ``None`` (默认值),则表示初始标头值未设置。 你可以在稍后使用 :meth:`append` "
125+
"方法调用向标头添加新值。 *s* 可以是 :class:`bytes` 或 :class:`str` 的实例,注意参阅 :meth:`append` "
126+
"文档了解相关语义。"
124127

125128
#: ../../library/email.header.rst:70
126129
msgid ""
@@ -131,6 +134,9 @@ msgid ""
131134
"default), the ``us-ascii`` character set is used both as *s*'s initial "
132135
"charset and as the default for subsequent :meth:`append` calls."
133136
msgstr ""
137+
"可选的 *charset* 用于两种目的:它的含义与 :meth:`append` 方法的 *charset* 参数相同。 它还会为所有省略了 "
138+
"*charset* 参数的后续 :meth:`append` 调用设置默认字符集。 如果 *charset* 在构造器中未提供(默认设置),则会将 "
139+
"``us-ascii`` 字符集用作 *s* 的初始字符集以及后续 :meth:`append` 调用的默认字符集。"
134140

135141
#: ../../library/email.header.rst:77
136142
msgid ""
@@ -141,6 +147,10 @@ msgid ""
141147
"default value for *header_name* is ``None``, meaning it is not taken into "
142148
"account for the first line of a long, split header."
143149
msgstr ""
150+
"通过 *maxlinelen* 可以显式指定最大行长度。 要将第一行拆分为更短的值 (以适应未被包括在to account for the field"
151+
" header which isn't included in *s* 中的字段标头,例如 "
152+
":mailheader:`Subject`),则将字段名称作为 *header_name* 传入。 *maxlinelen* 默认值为 76,而 "
153+
"*header_name* 默认值为 ``None``,表示不考虑拆分超长标头的第一行。"
144154

145155
#: ../../library/email.header.rst:84
146156
msgid ""
@@ -149,11 +159,13 @@ msgid ""
149159
"character will be prepended to continuation lines. *continuation_ws* "
150160
"defaults to a single space character."
151161
msgstr ""
162+
"可选的 *continuation_ws* 必须为符合 :rfc:`2822` 的折叠用空白符,通常是空格符或硬制表符。 "
163+
"这个字符将被加缀至连续行的开头。 *continuation_ws* 默认为一个空格符。"
152164

153165
#: ../../library/email.header.rst:89
154166
msgid ""
155167
"Optional *errors* is passed straight through to the :meth:`append` method."
156-
msgstr ""
168+
msgstr "可选的 *errors* 会被直接传递给 :meth:`append` 方法。"
157169

158170
#: ../../library/email.header.rst:94
159171
msgid "Append the string *s* to the MIME header."

0 commit comments

Comments
 (0)