-
-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathtime.po
More file actions
223 lines (196 loc) · 7.9 KB
/
Copy pathtime.po
File metadata and controls
223 lines (196 loc) · 7.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2001 Python Software Foundation
# This file is distributed under the same license as the Python package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# python-doc bot, 2025
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Python 3.14\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-09-16 17:23+0000\n"
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
"Last-Translator: python-doc bot, 2025\n"
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
"teams/5390/pt_BR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: pt_BR\n"
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % "
"1000000 == 0 ? 1 : 2;\n"
#: ../../c-api/time.rst:6
msgid "PyTime C API"
msgstr "API C PyTime"
#: ../../c-api/time.rst:10
msgid ""
"The clock C API provides access to system clocks. It is similar to the "
"Python :mod:`time` module."
msgstr ""
"A API C de relógios provê acesso a relógios do sistema. Ela é similar ao "
"módulo Python :mod:`time`."
#: ../../c-api/time.rst:13
msgid ""
"For C API related to the :mod:`datetime` module, see :ref:`datetimeobjects`."
msgstr ""
"Para uma API C relacionada ao módulo :mod:`datetime`, veja :ref:"
"`datetimeobjects`."
#: ../../c-api/time.rst:17
msgid "Types"
msgstr "Tipos"
#: ../../c-api/time.rst:21
msgid ""
"A timestamp or duration in nanoseconds, represented as a signed 64-bit "
"integer."
msgstr ""
"Um registro de data e hora ou uma duração em nanossegundos, representados "
"como um inteiro de 64 bits com sinal."
#: ../../c-api/time.rst:24
msgid ""
"The reference point for timestamps depends on the clock used. For example, :"
"c:func:`PyTime_Time` returns timestamps relative to the UNIX epoch."
msgstr ""
"O ponto de referência para registros de data e hora depende do relógio "
"usado. Por exemplo, :c:func:`PyTime_Time` retorna registros relativos à "
"época UNIX."
#: ../../c-api/time.rst:27
msgid ""
"The supported range is around [-292.3 years; +292.3 years]. Using the Unix "
"epoch (January 1st, 1970) as reference, the supported date range is around "
"[1677-09-21; 2262-04-11]. The exact limits are exposed as constants:"
msgstr ""
"É suportada uma amplitude em torno de [-292.3 anos; +292.3 anos]. Usando o "
"início da época UNIX (1º de Janeiro de 1970) como referência, a gama de "
"datas suportadas é em torno de [1677-09-21; 2262-04-11]. Os limites exatos "
"são expostos como constantes:"
#: ../../c-api/time.rst:34
msgid "Minimum value of :c:type:`PyTime_t`."
msgstr "Valor mínimo de :c:type:`PyTime_t`."
#: ../../c-api/time.rst:38
msgid "Maximum value of :c:type:`PyTime_t`."
msgstr "Valor máximo de :c:type:`PyTime_t`."
#: ../../c-api/time.rst:42
msgid "Clock Functions"
msgstr "Funções de relógio"
#: ../../c-api/time.rst:44
msgid ""
"The following functions take a pointer to a :c:expr:`PyTime_t` that they set "
"to the value of a particular clock. Details of each clock are given in the "
"documentation of the corresponding Python function."
msgstr ""
"As funções a seguir aceitam um ponteiro para :c:expr:`PyTime_t` ao qual elas "
"atribuem o valor de um determinado relógio. Detalhes de cada relógio estão "
"disponíveis nas documentações das funções Python correspondentes."
#: ../../c-api/time.rst:49
msgid ""
"The functions return ``0`` on success, or ``-1`` (with an exception set) on "
"failure."
msgstr ""
"As funções retornam ``0`` em caso de sucesso, ou ``-1`` (com uma exceção "
"definida) em caso de falha."
#: ../../c-api/time.rst:52
msgid ""
"On integer overflow, they set the :c:data:`PyExc_OverflowError` exception "
"and set ``*result`` to the value clamped to the ``[PyTime_MIN; PyTime_MAX]`` "
"range. (On current systems, integer overflows are likely caused by "
"misconfigured system time.)"
msgstr ""
"Em caso de estouro de inteiros, elas definem a exceção :c:data:"
"`PyExc_OverflowError` e definem ``*result`` como o valor limitado ao "
"intervalo ``[PyTime_MIN; PyTime_MAX]``. (Em sistemas atuais, estouros de "
"inteiros são provavelmente causados por uma má configuração do tempo do "
"sistema)."
#: ../../c-api/time.rst:58
msgid ""
"As any other C API (unless otherwise specified), the functions must be "
"called with an :term:`attached thread state`."
msgstr ""
"Como qualquer outra API C (se não especificado o contrário), as funções "
"devem ser chamadas com um :term:`estado de thread anexado`."
#: ../../c-api/time.rst:63
msgid ""
"Read the monotonic clock. See :func:`time.monotonic` for important details "
"on this clock."
msgstr ""
"Lê o relógio monótono. Veja :func:`time.monotonic` para detalhes importantes "
"sobre este relógio."
#: ../../c-api/time.rst:68
msgid ""
"Read the performance counter. See :func:`time.perf_counter` for important "
"details on this clock."
msgstr ""
"Lê o contador de desempenho. Veja :func:`time.perf_counter` para detalhes "
"importantes sobre este relógio."
#: ../../c-api/time.rst:73
msgid ""
"Read the “wall clock” time. See :func:`time.time` for details important on "
"this clock."
msgstr ""
"Lê o \"relógio de parede\". Veja :func:`time.time` para detalhes importantes "
"sobre este relógio."
#: ../../c-api/time.rst:78
msgid "Raw Clock Functions"
msgstr "Funções de relógio brutas"
#: ../../c-api/time.rst:80
msgid ""
"Similar to clock functions, but don't set an exception on error and don't "
"require the caller to have an :term:`attached thread state`."
msgstr ""
"Similar às funções de relógio, mas não definem uma exceção em condições de "
"erro, e não requerem que o chamador tenha um :term:`estado de thread "
"anexado`."
#: ../../c-api/time.rst:83
msgid "On success, the functions return ``0``."
msgstr "Em caso de sucesso, as funções retornam ``0``."
#: ../../c-api/time.rst:85
msgid ""
"On failure, they set ``*result`` to ``0`` and return ``-1``, *without* "
"setting an exception. To get the cause of the error, :term:`attach <attached "
"thread state>` a :term:`thread state`, and call the regular (non-``Raw``) "
"function. Note that the regular function may succeed after the ``Raw`` one "
"failed."
msgstr ""
"Em caso de falha, elas definem ``*result`` como ``0`` e retornam ``-1``, "
"*sem* definir uma exceção. Para acessar a causa do erro, :term:`anexe "
"<attached thread state>` um :term:`estado de thread` e chame a função "
"regular (sem o sufixo ``Raw``). Observe que a função regular pode ser bem-"
"sucedida mesmo após o ``Raw`` falhar."
#: ../../c-api/time.rst:92
msgid ""
"Similar to :c:func:`PyTime_Monotonic`, but don't set an exception on error "
"and don't require an :term:`attached thread state`."
msgstr ""
"Similar a :c:func:`PyTime_Monotonic`, mas não define uma exceção em caso de "
"erro, e não exige um :term:`estado de thread anexado`."
#: ../../c-api/time.rst:97
msgid ""
"Similar to :c:func:`PyTime_PerfCounter`, but don't set an exception on error "
"and don't require an :term:`attached thread state`."
msgstr ""
"Similar a :c:func:`PyTime_PerfCounter`, mas não define uma exceção em caso "
"de erro e não requer um :term:`estado de thread anexado`."
#: ../../c-api/time.rst:102
msgid ""
"Similar to :c:func:`PyTime_Time`, but don't set an exception on error and "
"don't require an :term:`attached thread state`."
msgstr ""
"Similar a :c:func:`PyTime_Time`, mas não define uma exceção em caso de erro "
"e não requer um :term:`estado de thread anexado`."
#: ../../c-api/time.rst:107
msgid "Conversion functions"
msgstr "Funções de conversão"
#: ../../c-api/time.rst:111
msgid "Convert a timestamp to a number of seconds as a C :c:expr:`double`."
msgstr ""
"Converte um registro de data e hora para uma quantidade de segundos como um :"
"c:expr:`double` C."
#: ../../c-api/time.rst:113
msgid ""
"The function cannot fail, but note that :c:expr:`double` has limited "
"accuracy for large values."
msgstr ""
"Esta função nunca falha, mas note que :c:expr:`double` tem acurácia limitada "
"para valores grandes."