4
4
#
5
5
# Translators:
6
6
# Ching-Lung Chuang, 2015
7
+ # Matt Wang <mattwang44@gmail.com>, 2021
8
+ #
7
9
msgid ""
8
10
msgstr ""
9
11
"Project-Id-Version : Python 3.10\n "
10
12
"Report-Msgid-Bugs-To : \n "
11
- "POT-Creation-Date : 2021-09-13 00:11 +0000\n "
12
- "PO-Revision-Date : 2017-09-22 18:26+0000 \n "
13
- "Last-Translator : Ching-Lung Chuang \n "
13
+ "POT-Creation-Date : 2021-06-29 12:56 +0000\n "
14
+ "PO-Revision-Date : 2021-12-09 20:47+0800 \n "
15
+ "Last-Translator : Matt Wang <mattwang44@gmail.com> \n "
14
16
"Language-Team : Chinese - TAIWAN (https://github.com/python/python-docs-zh- "
15
17
"tw)\n "
16
18
"Language : zh_TW\n "
17
19
"MIME-Version : 1.0\n "
18
20
"Content-Type : text/plain; charset=UTF-8\n "
19
21
"Content-Transfer-Encoding : 8bit\n "
20
22
"Plural-Forms : nplurals=1; plural=0;\n "
23
+ "X-Generator : Poedit 3.0\n "
21
24
22
25
#: ../../c-api/bool.rst:6
23
26
msgid "Boolean Objects"
24
- msgstr "布林物件 "
27
+ msgstr "Boolean(布林)物件 "
25
28
26
29
#: ../../c-api/bool.rst:8
27
30
msgid ""
@@ -30,39 +33,49 @@ msgid ""
30
33
"normal creation and deletion functions don't apply to booleans. The "
31
34
"following macros are available, however."
32
35
msgstr ""
36
+ "Python 中的 boolean 是以整數子類別化來實現的。只有 :const:`Py_False` 和 :"
37
+ "const:`Py_True` 兩個 boolean,因此一般的建立和刪除函式並不適用於 boolean,但"
38
+ "下列巨集 (macro) 是可用的。"
33
39
34
40
#: ../../c-api/bool.rst:16
35
41
msgid ""
36
42
"Return true if *o* is of type :c:data:`PyBool_Type`. This function always "
37
43
"succeeds."
38
44
msgstr ""
45
+ "如果 *o* 的型別為 :c:data:`PyBool_Type` 則回傳真值。此函式總是會成功執行。"
39
46
40
47
#: ../../c-api/bool.rst:22
41
48
msgid ""
42
49
"The Python ``False`` object. This object has no methods. It needs to be "
43
50
"treated just like any other object with respect to reference counts."
44
51
msgstr ""
52
+ "Python 的 ``False`` 物件。此物件沒有任何方法,在參照 (reference) 計數上必須有"
53
+ "著和其他物件一樣的處理方式。"
45
54
46
55
#: ../../c-api/bool.rst:28
47
56
msgid ""
48
57
"The Python ``True`` object. This object has no methods. It needs to be "
49
58
"treated just like any other object with respect to reference counts."
50
59
msgstr ""
60
+ "Python 的 ``True`` 物件。此物件沒有任何方法,在參照計數上必須有著和其他物件一"
61
+ "樣的處理方式。"
51
62
52
63
#: ../../c-api/bool.rst:34
53
64
msgid ""
54
65
"Return :const:`Py_False` from a function, properly incrementing its "
55
66
"reference count."
56
- msgstr ""
67
+ msgstr "從函式回傳 :const:`Py_False` \\ ,並適當的增加它的參照計數。 "
57
68
58
69
#: ../../c-api/bool.rst:40
59
70
msgid ""
60
71
"Return :const:`Py_True` from a function, properly incrementing its reference "
61
72
"count."
62
- msgstr ""
73
+ msgstr "從函式回傳 :const:`Py_True` \\ ,並適當的增加它的參照計數。 "
63
74
64
75
#: ../../c-api/bool.rst:46
65
76
msgid ""
66
77
"Return a new reference to :const:`Py_True` or :const:`Py_False` depending on "
67
78
"the truth value of *v*."
68
79
msgstr ""
80
+ "根據 *v* 的實際值來回傳一個 :const:`Py_True` 或者 :const:`Py_False` 的新參"
81
+ "照。"
0 commit comments