5
5
#
6
6
# Translators:
7
7
# i17obot <[email protected] >, 2021
8
+ # José Carlos, 2024
8
9
#
9
10
#, fuzzy
10
11
msgid ""
11
12
msgstr ""
12
13
"Project-Id-Version : Python 3.13\n "
13
14
"Report-Msgid-Bugs-To : \n "
14
- "POT-Creation-Date : 2024-05-24 14:15+0000\n "
15
+ "POT-Creation-Date : 2024-08-16 14:15+0000\n "
15
16
"PO-Revision-Date : 2021-06-28 01:15+0000\n "
16
- "
Last-Translator :
i17obot <[email protected] >, 2021 \n"
17
+ "Last-Translator : José Carlos, 2024 \n "
17
18
"Language-Team : Portuguese (Brazil) (https://app.transifex.com/python-doc/ "
18
19
"teams/5390/pt_BR/)\n "
19
20
"MIME-Version : 1.0\n "
@@ -25,21 +26,23 @@ msgstr ""
25
26
26
27
#: ../../library/tkinter.font.rst:2
27
28
msgid ":mod:`!tkinter.font` --- Tkinter font wrapper"
28
- msgstr ""
29
+ msgstr ":mod:`!tkinter.font` --- Invólucro de fontes Tkinter "
29
30
30
31
#: ../../library/tkinter.font.rst:8
31
32
msgid "**Source code:** :source:`Lib/tkinter/font.py`"
32
- msgstr ""
33
+ msgstr "**Código-fonte:** :source:`Lib/tkinter/font.py` "
33
34
34
35
#: ../../library/tkinter.font.rst:12
35
36
msgid ""
36
37
"The :mod:`tkinter.font` module provides the :class:`Font` class for creating "
37
38
"and using named fonts."
38
39
msgstr ""
40
+ "O módulo :mod:`tkinter.font`apresenta a classe :class:`Font`para criação e "
41
+ "utilização de fontes nomeadas."
39
42
40
43
#: ../../library/tkinter.font.rst:15
41
44
msgid "The different font weights and slants are:"
42
- msgstr ""
45
+ msgstr "Os diferentes pesos e inclinações de fontes são: "
43
46
44
47
#: ../../library/tkinter.font.rst:24
45
48
msgid ""
@@ -49,18 +52,23 @@ msgid ""
49
52
"as a single object, rather than specifying a font by its attributes with "
50
53
"each occurrence."
51
54
msgstr ""
55
+ "A classe :class:`Font` representa uma fonte nomeada. Instâncias *Font* "
56
+ "recebem nomes únicos e podem ser especificadas por família, tamanho e "
57
+ "configuração de estilo. Fontes nomeadas são os métodos Tk para criação e "
58
+ "identificação de fontes de um objeto singular, ao invés de especificar a "
59
+ "fonte por seus atributos em cada ocorrência."
52
60
53
61
#: ../../library/tkinter.font.rst:30
54
62
msgid "arguments:"
55
63
msgstr "argumentos:"
56
64
57
65
#: ../../library/tkinter.font.rst:0
58
66
msgid "*font* - font specifier tuple (family, size, options)"
59
- msgstr ""
67
+ msgstr "*font* - tupla de especificação da fonte (família, tamanho, opções) "
60
68
61
69
#: ../../library/tkinter.font.rst:0
62
70
msgid "*name* - unique font name"
63
- msgstr ""
71
+ msgstr "*name* - nome único da fonte "
64
72
65
73
#: ../../library/tkinter.font.rst:0
66
74
msgid "*exists* - self points to existing named font if true"
@@ -69,30 +77,31 @@ msgstr ""
69
77
#: ../../library/tkinter.font.rst:36
70
78
msgid "additional keyword options (ignored if *font* is specified):"
71
79
msgstr ""
80
+ "palavras reservadas opcionais (ignoradas caso *font* seja especificado):"
72
81
73
82
#: ../../library/tkinter.font.rst:0
74
83
msgid "*family* - font family i.e. Courier, Times"
75
- msgstr ""
84
+ msgstr "*family* - a família da fonte e.x. Courier, Times "
76
85
77
86
#: ../../library/tkinter.font.rst:0
78
87
msgid "*size* - font size"
79
- msgstr ""
88
+ msgstr "*size* - tamanho da fonte "
80
89
81
90
#: ../../library/tkinter.font.rst:0
82
91
msgid "If *size* is positive it is interpreted as size in points."
83
92
msgstr "Se *size* for positivo, ele é interpretado como tamanho em pontos."
84
93
85
94
#: ../../library/tkinter.font.rst:0
86
95
msgid "If *size* is a negative number its absolute value is treated"
87
- msgstr ""
96
+ msgstr "Caso *size* seja um número negativo, seu valor absoluto é tratado "
88
97
89
98
#: ../../library/tkinter.font.rst:0
90
99
msgid "as size in pixels."
91
- msgstr ""
100
+ msgstr "como tamanho em pixels. "
92
101
93
102
#: ../../library/tkinter.font.rst:0
94
103
msgid "*weight* - font emphasis (NORMAL, BOLD)"
95
- msgstr ""
104
+ msgstr "*weight* - ênfase da fonte (normal,negrito) "
96
105
97
106
#: ../../library/tkinter.font.rst:0
98
107
msgid "*slant* - ROMAN, ITALIC"
@@ -101,74 +110,80 @@ msgstr ""
101
110
#: ../../library/tkinter.font.rst:0
102
111
msgid "*underline* - font underlining (0 - none, 1 - underline)"
103
112
msgstr ""
113
+ "*underline* - sublinhamento da fonte (0 - sem sublinhamento, 1 - sublinhado)"
104
114
105
115
#: ../../library/tkinter.font.rst:0
106
116
msgid "*overstrike* - font strikeout (0 - none, 1 - strikeout)"
107
- msgstr ""
117
+ msgstr "*overstrike* - fonte riscada (0 - sem risco, 1 - letras riscadas) "
108
118
109
119
#: ../../library/tkinter.font.rst:50
110
120
msgid "Return the attributes of the font."
111
- msgstr ""
121
+ msgstr "Retorna os atributos da fonte. "
112
122
113
123
#: ../../library/tkinter.font.rst:54
114
124
msgid "Retrieve an attribute of the font."
115
- msgstr ""
125
+ msgstr "Recupera um atributo da fonte. "
116
126
117
127
#: ../../library/tkinter.font.rst:58
118
128
msgid "Modify attributes of the font."
119
- msgstr ""
129
+ msgstr "Modifica atributos da fonte. "
120
130
121
131
#: ../../library/tkinter.font.rst:62
122
132
msgid "Return new instance of the current font."
123
- msgstr ""
133
+ msgstr "Retorna uma nova instância da fonte atual. "
124
134
125
135
#: ../../library/tkinter.font.rst:66
126
136
msgid ""
127
137
"Return amount of space the text would occupy on the specified display when "
128
138
"formatted in the current font. If no display is specified then the main "
129
139
"application window is assumed."
130
140
msgstr ""
141
+ "Retorna a quantidade de espaço que o texto ocuparia na exibição especificada "
142
+ "ao ser formatado na fonte atual. Caso nenhuma exibição seja especificada, a "
143
+ "exibição presumida será a da janela principal da aplicação."
131
144
132
145
#: ../../library/tkinter.font.rst:72
133
146
msgid "Return font-specific data. Options include:"
134
- msgstr ""
147
+ msgstr "Retorna dados específicos da fonte. Opções inclusas: "
135
148
136
149
#: ../../library/tkinter.font.rst:75
137
150
msgid "*ascent* - distance between baseline and highest point that a"
138
- msgstr ""
151
+ msgstr "*ascent* - distância entre a linha de base e o ponto mais alto que um "
139
152
140
153
#: ../../library/tkinter.font.rst:76 ../../library/tkinter.font.rst:79
141
154
msgid "character of the font can occupy"
142
- msgstr ""
155
+ msgstr "caractere da fonte pode ocupar "
143
156
144
157
#: ../../library/tkinter.font.rst:78
145
158
msgid "*descent* - distance between baseline and lowest point that a"
146
159
msgstr ""
160
+ "*descent* - distância entre a linha de base e o ponto mais baixo que um"
147
161
148
162
#: ../../library/tkinter.font.rst:81
149
163
msgid "*linespace* - minimum vertical separation necessary between any two"
150
- msgstr ""
164
+ msgstr "*linespace* - separação vertical mínima necessária entre dois "
151
165
152
166
#: ../../library/tkinter.font.rst:82
153
167
msgid "characters of the font that ensures no vertical overlap between lines."
154
168
msgstr ""
169
+ "caracteres da fonte que garante que não ocorra sobreposição entre as linhas."
155
170
156
171
#: ../../library/tkinter.font.rst:84
157
172
msgid "*fixed* - 1 if font is fixed-width else 0"
158
- msgstr ""
173
+ msgstr "*fixed* - 1 caso a fonte seja de largura fixa, 0 caso contrário "
159
174
160
175
#: ../../library/tkinter.font.rst:88
161
176
msgid "Return the different font families."
162
- msgstr ""
177
+ msgstr "Retorna as diferentes famílias de fontes. "
163
178
164
179
#: ../../library/tkinter.font.rst:92
165
180
msgid "Return the names of defined fonts."
166
- msgstr ""
181
+ msgstr "Retorna os nomes das fontes definidas. "
167
182
168
183
#: ../../library/tkinter.font.rst:96
169
184
msgid "Return a :class:`Font` representation of a tk named font."
170
- msgstr ""
185
+ msgstr "Retorna a representação :class:`Font`de uma fonte nomeada do tk. "
171
186
172
187
#: ../../library/tkinter.font.rst:98
173
188
msgid "The *root* parameter was added."
174
- msgstr ""
189
+ msgstr "O parâmetro *root* foi adicionado. "
0 commit comments