@@ -8,18 +8,19 @@ msgstr ""
8
8
"Project-Id-Version : Python 3.12\n "
9
9
"Report-Msgid-Bugs-To : \n "
10
10
"POT-Creation-Date : 2021-10-26 16:47+0000\n "
11
- "PO-Revision-Date : YEAR-MO-DA HO:MI+ZONE \n "
12
- "Last-Translator : FULL NAME <EMAIL@ADDRESS >\n "
11
+ "PO-Revision-Date : 2024-02-15 23:09+0800 \n "
12
+ "
Last-Translator :
RockLeon <[email protected] >\n"
13
13
"Language-Team : Chinese - TAIWAN (https://github.com/python/python-docs-zh- "
14
14
"tw)\n "
15
15
"Language : zh_TW\n "
16
16
"MIME-Version : 1.0\n "
17
17
"Content-Type : text/plain; charset=UTF-8\n "
18
18
"Content-Transfer-Encoding : 8bit\n "
19
+ "X-Generator : Poedit 3.4.2\n "
19
20
20
21
#: ../../library/tkinter.font.rst:2
21
22
msgid ":mod:`tkinter.font` --- Tkinter font wrapper"
22
- msgstr ""
23
+ msgstr ":mod:`tkinter.font` --- Tkinter 字型包裝器 "
23
24
24
25
#: ../../library/tkinter.font.rst:8
25
26
msgid "**Source code:** :source:`Lib/tkinter/font.py`"
@@ -30,10 +31,11 @@ msgid ""
30
31
"The :mod:`tkinter.font` module provides the :class:`Font` class for creating "
31
32
"and using named fonts."
32
33
msgstr ""
34
+ ":mod:`tkinter.font` 模組提供類別 :class:`Font`,可以建立及使用已命名的字型。"
33
35
34
36
#: ../../library/tkinter.font.rst:15
35
37
msgid "The different font weights and slants are:"
36
- msgstr ""
38
+ msgstr "不同的字重 (font weights) 以及傾斜 (slant) 是: "
37
39
38
40
#: ../../library/tkinter.font.rst:24
39
41
msgid ""
@@ -43,125 +45,130 @@ msgid ""
43
45
"as a single object, rather than specifying a font by its attributes with "
44
46
"each occurrence."
45
47
msgstr ""
48
+ "類別 :class:`Font` 代表一個已命名字型。*Font* 實例會被賦予一個的名字,也可以"
49
+ "特指他們的字型家族 (font family)、字級 (size)、以及外觀設定。已命名字型是 Tk "
50
+ "建立及辨識字型為單一物件的方式,而不是每次出現時特指字型的屬性。"
46
51
47
52
#: ../../library/tkinter.font.rst:30
48
53
msgid "arguments:"
49
54
msgstr "引數:"
50
55
51
56
#: ../../library/tkinter.font.rst:0
52
57
msgid "*font* - font specifier tuple (family, size, options)"
53
- msgstr ""
58
+ msgstr "*font* - 字型指定符號元組 (family, size, options) "
54
59
55
60
#: ../../library/tkinter.font.rst:0
56
61
msgid "*name* - unique font name"
57
- msgstr ""
62
+ msgstr "*name* - 獨特字型名稱 "
58
63
59
64
#: ../../library/tkinter.font.rst:0
60
65
msgid "*exists* - self points to existing named font if true"
61
- msgstr ""
66
+ msgstr "*exists* - 如果存在的話,指向現有的已命名字型 "
62
67
63
68
#: ../../library/tkinter.font.rst:36
64
69
msgid "additional keyword options (ignored if *font* is specified):"
65
- msgstr ""
70
+ msgstr "額外的關鍵字選項(若已指定 *font* 則會忽略): "
66
71
67
72
#: ../../library/tkinter.font.rst:0
68
73
msgid "*family* - font family i.e. Courier, Times"
69
- msgstr ""
74
+ msgstr "*family* - 字型家族,例如:Courier、Times "
70
75
71
76
#: ../../library/tkinter.font.rst:0
72
77
msgid "*size* - font size"
73
- msgstr ""
78
+ msgstr "*size* - 字級 "
74
79
75
80
#: ../../library/tkinter.font.rst:0
76
81
msgid "If *size* is positive it is interpreted as size in points."
77
- msgstr ""
82
+ msgstr "如果 *size* 是正數則會直譯成以點 (point) 為單位的字級。 "
78
83
79
84
#: ../../library/tkinter.font.rst:0
80
85
msgid "If *size* is a negative number its absolute value is treated"
81
- msgstr ""
86
+ msgstr "如果 *size* 是負數則會變成絕對值 "
82
87
83
88
#: ../../library/tkinter.font.rst:0
84
89
msgid "as size in pixels."
85
- msgstr ""
90
+ msgstr "以像素 (pixel) 為單位的字級。 "
86
91
87
92
#: ../../library/tkinter.font.rst:0
88
93
msgid "*weight* - font emphasis (NORMAL, BOLD)"
89
- msgstr ""
94
+ msgstr "*weight* - 強調字型,例如:NORMAL(標準體)、BOLD(粗體) "
90
95
91
96
#: ../../library/tkinter.font.rst:0
92
97
msgid "*slant* - ROMAN, ITALIC"
93
- msgstr ""
98
+ msgstr "*slant* - 例如:ROMAN(正體)、ITALIC(斜體) "
94
99
95
100
#: ../../library/tkinter.font.rst:0
96
101
msgid "*underline* - font underlining (0 - none, 1 - underline)"
97
- msgstr ""
102
+ msgstr "*underline* - 字型加上底線(0 - 無底線、 1 - 加上底線) "
98
103
99
104
#: ../../library/tkinter.font.rst:0
100
105
msgid "*overstrike* - font strikeout (0 - none, 1 - strikeout)"
101
- msgstr ""
106
+ msgstr "*overstrike* - 字型加上刪除線(0 - 無刪除線、 1 - 加上刪除線) "
102
107
103
108
#: ../../library/tkinter.font.rst:50
104
109
msgid "Return the attributes of the font."
105
- msgstr ""
110
+ msgstr "回傳字型的屬性。 "
106
111
107
112
#: ../../library/tkinter.font.rst:54
108
113
msgid "Retrieve an attribute of the font."
109
- msgstr ""
114
+ msgstr "取得字型的其中一個屬性。 "
110
115
111
116
#: ../../library/tkinter.font.rst:58
112
117
msgid "Modify attributes of the font."
113
- msgstr ""
118
+ msgstr "修改字體的多個屬性。 "
114
119
115
120
#: ../../library/tkinter.font.rst:62
116
121
msgid "Return new instance of the current font."
117
- msgstr ""
122
+ msgstr "回傳目前字體的新實例。 "
118
123
119
124
#: ../../library/tkinter.font.rst:66
120
125
msgid ""
121
126
"Return amount of space the text would occupy on the specified display when "
122
127
"formatted in the current font. If no display is specified then the main "
123
128
"application window is assumed."
124
129
msgstr ""
130
+ "回傳目前字型被格式化時,在特定顯示區域中文字所用的空間。若顯示區域沒有被指"
131
+ "定,則會假定主程式視窗為顯示區域。"
125
132
126
133
#: ../../library/tkinter.font.rst:72
127
134
msgid "Return font-specific data. Options include:"
128
- msgstr ""
135
+ msgstr "回傳字型特定的資料。其選項包含: "
129
136
130
137
#: ../../library/tkinter.font.rst:76
131
138
msgid "*ascent* - distance between baseline and highest point that a"
132
- msgstr ""
139
+ msgstr "*ascent* - 基準線以及最高點的距離 "
133
140
134
141
#: ../../library/tkinter.font.rst:76 ../../library/tkinter.font.rst:79
135
142
msgid "character of the font can occupy"
136
- msgstr ""
143
+ msgstr "在字型中的一個字母可以佔用的空間 "
137
144
138
145
#: ../../library/tkinter.font.rst:79
139
146
msgid "*descent* - distance between baseline and lowest point that a"
140
- msgstr ""
147
+ msgstr "*descent* - 基準線以及最低點的距離 "
141
148
142
149
#: ../../library/tkinter.font.rst:82
143
150
msgid "*linespace* - minimum vertical separation necessary between any two"
144
- msgstr ""
151
+ msgstr "*linespace* - 最小所需的垂直間距 "
145
152
146
153
#: ../../library/tkinter.font.rst:82
147
154
msgid "characters of the font that ensures no vertical overlap between lines."
148
- msgstr ""
155
+ msgstr "在字型中的任兩個字母之間,確保跨行時不會有垂直重疊。 "
149
156
150
157
#: ../../library/tkinter.font.rst:84
151
158
msgid "*fixed* - 1 if font is fixed-width else 0"
152
- msgstr ""
159
+ msgstr "*fixed* - 若字型為等寬 (fixed-width) 的則為 1,否則為 0 "
153
160
154
161
#: ../../library/tkinter.font.rst:88
155
162
msgid "Return the different font families."
156
- msgstr ""
163
+ msgstr "回傳不同的字型家族。 "
157
164
158
165
#: ../../library/tkinter.font.rst:92
159
166
msgid "Return the names of defined fonts."
160
- msgstr ""
167
+ msgstr "回傳已定義字型的名字。 "
161
168
162
169
#: ../../library/tkinter.font.rst:96
163
170
msgid "Return a :class:`Font` representation of a tk named font."
164
- msgstr ""
171
+ msgstr "回傳一個 :class:`Font`,代表一個 tk 已命名字型。 "
165
172
166
173
#: ../../library/tkinter.font.rst:98
167
174
msgid "The *root* parameter was added."
0 commit comments