1
- # SOME DESCRIPTIVE TITLE.
2
- # Copyright (C) 2001-2022, Python Software Foundation
1
+ # Copyright (C) 2001-2023, Python Software Foundation
3
2
# This file is distributed under the same license as the Python package.
4
3
#
5
4
# Translators:
@@ -8,19 +7,20 @@ msgstr ""
8
7
"Project-Id-Version : Python 3.11\n "
9
8
"Report-Msgid-Bugs-To : \n "
10
9
"POT-Creation-Date : 2023-05-09 00:15+0000\n "
11
- "PO-Revision-Date : 2018-05-23 16:08+0000 \n "
12
- "Last-Translator : Adrian Liaw <adrianliaw2000 @gmail.com>\n "
10
+ "PO-Revision-Date : 2023-07-01 14:59+0800 \n "
11
+ "Last-Translator : Matt Wang <mattwang44 @gmail.com>\n "
13
12
"Language-Team : Chinese - TAIWAN (https://github.com/python/python-docs-zh- "
14
13
"tw)\n "
15
14
"Language : zh_TW\n "
16
15
"MIME-Version : 1.0\n "
17
16
"Content-Type : text/plain; charset=UTF-8\n "
18
17
"Content-Transfer-Encoding : 8bit\n "
19
18
"Plural-Forms : nplurals=1; plural=0;\n "
19
+ "X-Generator : Poedit 3.3.2\n "
20
20
21
21
#: ../../library/quopri.rst:2
22
22
msgid ":mod:`quopri` --- Encode and decode MIME quoted-printable data"
23
- msgstr ""
23
+ msgstr ":mod:`quopri` --- 編碼和解碼 MIME 可列印字元資料 "
24
24
25
25
#: ../../library/quopri.rst:7
26
26
msgid "**Source code:** :source:`Lib/quopri.py`"
@@ -36,6 +36,11 @@ msgid ""
36
36
"via the :mod:`base64` module is more compact if there are many such "
37
37
"characters, as when sending a graphics file."
38
38
msgstr ""
39
+ "該模組根據 :rfc:`1521`:「MIME(多功能網際網路郵件擴充)第一部分:指定和描述"
40
+ "網際網路訊息正文格式的機制」中的定義來執行可列印字元 (quoted-printable) 傳輸"
41
+ "編碼和解碼。可列印字元編碼是為不可列印字元相對較少的資料而設計的;如果存在許"
42
+ "多此類字元(例如發送圖形檔案時),則透過 :mod:`base64` 模組提供的 Base64 編碼"
43
+ "方案會更加簡潔。"
39
44
40
45
#: ../../library/quopri.rst:25
41
46
msgid ""
@@ -46,6 +51,11 @@ msgid ""
46
51
"encoded headers as described in :rfc:`1522`: \" MIME (Multipurpose Internet "
47
52
"Mail Extensions) Part Two: Message Header Extensions for Non-ASCII Text\" ."
48
53
msgstr ""
54
+ "解碼 *input* 檔案的內容並將解碼後的二進位資料寫入 *output* 檔案。 *input* 和 "
55
+ "*output* 必須是\\ :term:`二進位檔案物件 <file object>`。如果可選參數 "
56
+ "*header* 存在且為 true,則底線將被解碼為空格。這用於解碼如 :rfc:`1522`:"
57
+ "「MIME(多功能網際網路郵件擴充)第二部分:非 ASCII 文字的訊息標頭擴充」中所述"
58
+ "的 \" Q\" 編碼標頭。"
49
59
50
60
#: ../../library/quopri.rst:35
51
61
msgid ""
@@ -58,31 +68,42 @@ msgid ""
58
68
"rfc:`1521`. *header* is a flag which controls if spaces are encoded as "
59
69
"underscores as per :rfc:`1522`."
60
70
msgstr ""
71
+ "對 *input* 檔案的內容進行編碼,並將生成的可列印字元資料寫入 *output* 檔案。 "
72
+ "*input* 和 *output* 必須是\\ :term:`二進位檔案物件 <file object>`。 "
73
+ "*quotetabs*,一個非可選旗標,控制是否對嵌入的空格和製表符號 (tab) 進行編碼;"
74
+ "當為 true 時,它將對此類嵌入的空白進行編碼,當為 false 時,它將不對它們進行編"
75
+ "碼。請注意,出現在列尾的空格和製表符號都會按照 :rfc:`1521` 進行編碼。 "
76
+ "*header* 是一個旗標,用於控制空格是否按照 :rfc:`1522` 編碼為底線。"
61
77
62
78
#: ../../library/quopri.rst:48
63
79
msgid ""
64
80
"Like :func:`decode`, except that it accepts a source :class:`bytes` and "
65
81
"returns the corresponding decoded :class:`bytes`."
66
82
msgstr ""
83
+ "與 :func:`decode` 類似,不同之處在於它接受來源的 :class:`bytes` 並回傳相應的"
84
+ "已解碼 :class:`bytes`。"
67
85
68
86
#: ../../library/quopri.rst:54
69
87
msgid ""
70
88
"Like :func:`encode`, except that it accepts a source :class:`bytes` and "
71
89
"returns the corresponding encoded :class:`bytes`. By default, it sends a "
72
90
"``False`` value to *quotetabs* parameter of the :func:`encode` function."
73
91
msgstr ""
92
+ "與 :func:`encode` 類似,不同之處在於它接受來源的 :class:`bytes` 並回傳相應的"
93
+ "已編碼 :class:`bytes`。預設情況下,它向 :func:`encode` 函式的 *quotetabs* 參"
94
+ "數發送一個 ``False`` 值。"
74
95
75
96
#: ../../library/quopri.rst:62
76
97
msgid "Module :mod:`base64`"
77
98
msgstr ":mod:`base64` 模組"
78
99
79
100
#: ../../library/quopri.rst:63
80
101
msgid "Encode and decode MIME base64 data"
81
- msgstr ""
102
+ msgstr "對 MIME Base64 資料進行編碼和解碼 "
82
103
83
104
#: ../../library/quopri.rst:9
84
105
msgid "quoted-printable"
85
- msgstr ""
106
+ msgstr "quoted-printable(可列印字元) "
86
107
87
108
#: ../../library/quopri.rst:9
88
109
msgid "encoding"
@@ -94,4 +115,4 @@ msgstr "MIME"
94
115
95
116
#: ../../library/quopri.rst:9
96
117
msgid "quoted-printable encoding"
97
- msgstr ""
118
+ msgstr "quoted-printable encoding(可列印字元編碼) "
0 commit comments