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

Skip to content

Commit 5e9a73d

Browse files
[po] auto sync
1 parent a8402b6 commit 5e9a73d

2 files changed

Lines changed: 19 additions & 7 deletions

File tree

library/email.contentmanager.po

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
# Translators:
77
# Jerry Chen <[email protected]>, 2017
88
# cdarlint <[email protected]>, 2019
9+
# Freesand Leo <[email protected]>, 2021
910
#
1011
#, fuzzy
1112
msgid ""
@@ -14,7 +15,7 @@ msgstr ""
1415
"Report-Msgid-Bugs-To: \n"
1516
"POT-Creation-Date: 2021-01-01 05:02+0000\n"
1617
"PO-Revision-Date: 2017-02-16 23:07+0000\n"
17-
"Last-Translator: cdarlint <cdarling@126.com>, 2019\n"
18+
"Last-Translator: Freesand Leo <yuqinju@163.com>, 2021\n"
1819
"Language-Team: Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n"
1920
"MIME-Version: 1.0\n"
2021
"Content-Type: text/plain; charset=UTF-8\n"
@@ -24,11 +25,11 @@ msgstr ""
2425

2526
#: ../../library/email.contentmanager.rst:2
2627
msgid ":mod:`email.contentmanager`: Managing MIME Content"
27-
msgstr ""
28+
msgstr ":mod:`email.contentmanager`: 管理 MIME 内容"
2829

2930
#: ../../library/email.contentmanager.rst:10
3031
msgid "**Source code:** :source:`Lib/email/contentmanager.py`"
31-
msgstr ""
32+
msgstr "**源代码:** :source:`Lib/email/contentmanager.py`"
3233

3334
#: ../../library/email.contentmanager.rst:14
3435
msgid "[1]_"
@@ -286,4 +287,4 @@ msgstr "脚注"
286287
msgid ""
287288
"Originally added in 3.4 as a :term:`provisional module <provisional "
288289
"package>`"
289-
msgstr ""
290+
msgstr "最初在 3.4 中作为 :term:`暂定模块 <provisional package>` 添加"

library/email.headerregistry.po

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -683,27 +683,31 @@ msgid ""
683683
"The ``username@domain`` portion of the address, correctly quoted for use as "
684684
"a bare address (the second form shown above). This attribute is not "
685685
"mutable."
686-
msgstr ""
686+
msgstr "地址的 ``username@domain`` 部分,经过正确引用处理以作为纯地址使用(上面显示的第二种形式)。 此属性不可变。"
687687

688688
#: ../../library/email.headerregistry.rst:418
689689
msgid ""
690690
"The ``str`` value of the object is the address quoted according to "
691691
":rfc:`5322` rules, but with no Content Transfer Encoding of any non-ASCII "
692692
"characters."
693693
msgstr ""
694+
"对象的 ``str`` 值是根据 :rfc:`5322` 规则进行引用处理的地址,但不带任何非 ASCII 字符的 Content Transfer "
695+
"Encoding。"
694696

695697
#: ../../library/email.headerregistry.rst:422
696698
msgid ""
697699
"To support SMTP (:rfc:`5321`), ``Address`` handles one special case: if "
698700
"``username`` and ``domain`` are both the empty string (or ``None``), then "
699701
"the string value of the ``Address`` is ``<>``."
700702
msgstr ""
703+
"为了支持 SMTP (:rfc:`5321`),``Address`` 会处理一种特殊情况:如果 ``username`` 和 ``domain`` "
704+
"均为空字符串 (或为 ``None``),则 ``Address`` 的字符串值为 ``<>``。"
701705

702706
#: ../../library/email.headerregistry.rst:429
703707
msgid ""
704708
"The class used to represent an address group. The general form of an "
705709
"address group is::"
706-
msgstr ""
710+
msgstr "用于表示地址组的类。 地址组的一般形式为::"
707711

708712
#: ../../library/email.headerregistry.rst:434
709713
msgid ""
@@ -712,19 +716,23 @@ msgid ""
712716
"single addresses that are not part of a group by setting *display_name* to "
713717
"``None`` and providing a list of the single address as *addresses*."
714718
msgstr ""
719+
"作为处理由组和单个地址混合构成的列表的便捷方式,``Group`` 也可以通过将 *display_name* 设为 ``None`` "
720+
"以用来表示不是某个组的一部分的单独地址并提供单独地址的列表作为 *addresses*。"
715721

716722
#: ../../library/email.headerregistry.rst:441
717723
msgid ""
718724
"The ``display_name`` of the group. If it is ``None`` and there is exactly "
719725
"one ``Address`` in ``addresses``, then the ``Group`` represents a single "
720726
"address that is not in a group."
721727
msgstr ""
728+
"组的 ``display_name``。 如果其为 ``None`` 并且恰好有一个 ``Address`` 在 ``addresses`` 中,则 "
729+
"``Group`` 表示一个不在某个组中的单独地址。"
722730

723731
#: ../../library/email.headerregistry.rst:447
724732
msgid ""
725733
"A possibly empty tuple of :class:`.Address` objects representing the "
726734
"addresses in the group."
727-
msgstr ""
735+
msgstr "一个可能为空的表示组中地址的包含 :class:`.Address` 对象的元组。"
728736

729737
#: ../../library/email.headerregistry.rst:452
730738
msgid ""
@@ -734,6 +742,9 @@ msgid ""
734742
"``addresses`` list, the ``str`` value will be the same as the ``str`` of "
735743
"that single ``Address``."
736744
msgstr ""
745+
"``Group`` 的 ``str`` 值会根据 :rfc:`5322` 进行格式化,但不带任何非 ASCII 字符的 Content Transfer"
746+
" Encoding。 如果 ``display_name`` 为空值且只有一个单独 ``Address`` 在 ``addresses`` 列表中,则 "
747+
"``str`` 值将与该单独 ``Address`` 的 ``str`` 相同。"
737748

738749
#: ../../library/email.headerregistry.rst:460
739750
msgid "Footnotes"

0 commit comments

Comments
 (0)