Skip to content

Commit 5db4579

Browse files
committed
tx pull
1 parent 193707e commit 5db4579

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+6887
-6569
lines changed

c-api/buffer.po

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
# (Douglas da Silva) <dementikovalev@yandex.ru>, 2017
88
# Claudio Rogerio Carvalho Filho, 2017
99
# Julio Gadioli Soares <jugaso@gmail.com>, 2018
10+
# felipe caridade <caridade500@gmail.com>, 2019
1011
#
1112
#, fuzzy
1213
msgid ""
@@ -15,7 +16,7 @@ msgstr ""
1516
"Report-Msgid-Bugs-To: \n"
1617
"POT-Creation-Date: 2019-01-01 10:14+0900\n"
1718
"PO-Revision-Date: 2017-02-16 17:33+0000\n"
18-
"Last-Translator: Julio Gadioli Soares <jugaso@gmail.com>, 2018\n"
19+
"Last-Translator: felipe caridade <caridade500@gmail.com>, 2019\n"
1920
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/python-doc/"
2021
"teams/5390/pt_BR/)\n"
2122
"MIME-Version: 1.0\n"
@@ -569,7 +570,7 @@ msgstr ""
569570
#: ../../c-api/buffer.rst:333 ../../c-api/buffer.rst:335
570571
#: ../../c-api/buffer.rst:337
571572
msgid "yes"
572-
msgstr ""
573+
msgstr "sim"
573574

574575
#: ../../c-api/buffer.rst:274 ../../c-api/buffer.rst:323
575576
#: ../../c-api/buffer.rst:325

c-api/bytes.po

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
# Guilherme Soster <guilhermesosters@gmail.com>, 2017
1010
# Julio Gadioli Soares <jugaso@gmail.com>, 2018
1111
# Tiago Henrique <tiagohrm@gmail.com>, 2018
12+
# Marco Rougeth <marco@rougeth.com>, 2019
1213
#
1314
#, fuzzy
1415
msgid ""
@@ -17,7 +18,7 @@ msgstr ""
1718
"Report-Msgid-Bugs-To: \n"
1819
"POT-Creation-Date: 2019-01-01 10:14+0900\n"
1920
"PO-Revision-Date: 2017-02-16 17:33+0000\n"
20-
"Last-Translator: Tiago Henrique <tiagohrm@gmail.com>, 2018\n"
21+
"Last-Translator: Marco Rougeth <marco@rougeth.com>, 2019\n"
2122
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/python-doc/"
2223
"teams/5390/pt_BR/)\n"
2324
"MIME-Version: 1.0\n"

c-api/datetime.po

Lines changed: 33 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.7\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2019-01-01 10:14+0900\n"
14+
"POT-Creation-Date: 2019-05-19 11:28+0900\n"
1515
"PO-Revision-Date: 2017-02-16 17:34+0000\n"
1616
"Last-Translator: Claudio Rogerio Carvalho Filho, 2017\n"
1717
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/python-doc/"
@@ -129,110 +129,122 @@ msgstr ""
129129

130130
#: ../../c-api/datetime.rst:103
131131
msgid ""
132+
"Return a :class:`datetime.datetime` object with the specified year, month, "
133+
"day, hour, minute, second, microsecond and fold."
134+
msgstr ""
135+
136+
#: ../../c-api/datetime.rst:111
137+
msgid ""
132138
"Return a :class:`datetime.time` object with the specified hour, minute, "
133139
"second and microsecond."
134140
msgstr ""
135141

136-
#: ../../c-api/datetime.rst:109
142+
#: ../../c-api/datetime.rst:117
143+
msgid ""
144+
"Return a :class:`datetime.time` object with the specified hour, minute, "
145+
"second, microsecond and fold."
146+
msgstr ""
147+
148+
#: ../../c-api/datetime.rst:125
137149
msgid ""
138150
"Return a :class:`datetime.timedelta` object representing the given number of "
139151
"days, seconds and microseconds. Normalization is performed so that the "
140152
"resulting number of microseconds and seconds lie in the ranges documented "
141153
"for :class:`datetime.timedelta` objects."
142154
msgstr ""
143155

144-
#: ../../c-api/datetime.rst:116
156+
#: ../../c-api/datetime.rst:132
145157
msgid ""
146158
"Return a :class:`datetime.timezone` object with an unnamed fixed offset "
147159
"represented by the *offset* argument."
148160
msgstr ""
149161

150-
#: ../../c-api/datetime.rst:123
162+
#: ../../c-api/datetime.rst:139
151163
msgid ""
152164
"Return a :class:`datetime.timezone` object with a fixed offset represented "
153165
"by the *offset* argument and with tzname *name*."
154166
msgstr ""
155167

156-
#: ../../c-api/datetime.rst:129
168+
#: ../../c-api/datetime.rst:145
157169
msgid ""
158170
"Macros to extract fields from date objects. The argument must be an "
159171
"instance of :c:data:`PyDateTime_Date`, including subclasses (such as :c:data:"
160172
"`PyDateTime_DateTime`). The argument must not be *NULL*, and the type is "
161173
"not checked:"
162174
msgstr ""
163175

164-
#: ../../c-api/datetime.rst:136
176+
#: ../../c-api/datetime.rst:152
165177
msgid "Return the year, as a positive int."
166178
msgstr ""
167179

168-
#: ../../c-api/datetime.rst:141
180+
#: ../../c-api/datetime.rst:157
169181
msgid "Return the month, as an int from 1 through 12."
170182
msgstr ""
171183

172-
#: ../../c-api/datetime.rst:146
184+
#: ../../c-api/datetime.rst:162
173185
msgid "Return the day, as an int from 1 through 31."
174186
msgstr ""
175187

176-
#: ../../c-api/datetime.rst:149
188+
#: ../../c-api/datetime.rst:165
177189
msgid ""
178190
"Macros to extract fields from datetime objects. The argument must be an "
179191
"instance of :c:data:`PyDateTime_DateTime`, including subclasses. The "
180192
"argument must not be *NULL*, and the type is not checked:"
181193
msgstr ""
182194

183-
#: ../../c-api/datetime.rst:155 ../../c-api/datetime.rst:179
195+
#: ../../c-api/datetime.rst:171 ../../c-api/datetime.rst:195
184196
msgid "Return the hour, as an int from 0 through 23."
185197
msgstr ""
186198

187-
#: ../../c-api/datetime.rst:160 ../../c-api/datetime.rst:184
199+
#: ../../c-api/datetime.rst:176 ../../c-api/datetime.rst:200
188200
msgid "Return the minute, as an int from 0 through 59."
189201
msgstr ""
190202

191-
#: ../../c-api/datetime.rst:165 ../../c-api/datetime.rst:189
203+
#: ../../c-api/datetime.rst:181 ../../c-api/datetime.rst:205
192204
msgid "Return the second, as an int from 0 through 59."
193205
msgstr ""
194206

195-
#: ../../c-api/datetime.rst:170 ../../c-api/datetime.rst:194
207+
#: ../../c-api/datetime.rst:186 ../../c-api/datetime.rst:210
196208
msgid "Return the microsecond, as an int from 0 through 999999."
197209
msgstr ""
198210

199-
#: ../../c-api/datetime.rst:173
211+
#: ../../c-api/datetime.rst:189
200212
msgid ""
201213
"Macros to extract fields from time objects. The argument must be an "
202214
"instance of :c:data:`PyDateTime_Time`, including subclasses. The argument "
203215
"must not be *NULL*, and the type is not checked:"
204216
msgstr ""
205217

206-
#: ../../c-api/datetime.rst:197
218+
#: ../../c-api/datetime.rst:213
207219
msgid ""
208220
"Macros to extract fields from time delta objects. The argument must be an "
209221
"instance of :c:data:`PyDateTime_Delta`, including subclasses. The argument "
210222
"must not be *NULL*, and the type is not checked:"
211223
msgstr ""
212224

213-
#: ../../c-api/datetime.rst:203
225+
#: ../../c-api/datetime.rst:219
214226
msgid "Return the number of days, as an int from -999999999 to 999999999."
215227
msgstr ""
216228

217-
#: ../../c-api/datetime.rst:210
229+
#: ../../c-api/datetime.rst:226
218230
msgid "Return the number of seconds, as an int from 0 through 86399."
219231
msgstr ""
220232

221-
#: ../../c-api/datetime.rst:217
233+
#: ../../c-api/datetime.rst:233
222234
msgid "Return the number of microseconds, as an int from 0 through 999999."
223235
msgstr ""
224236

225-
#: ../../c-api/datetime.rst:222
237+
#: ../../c-api/datetime.rst:238
226238
msgid "Macros for the convenience of modules implementing the DB API:"
227239
msgstr ""
228240

229-
#: ../../c-api/datetime.rst:226
241+
#: ../../c-api/datetime.rst:242
230242
msgid ""
231243
"Create and return a new :class:`datetime.datetime` object given an argument "
232244
"tuple suitable for passing to :meth:`datetime.datetime.fromtimestamp()`."
233245
msgstr ""
234246

235-
#: ../../c-api/datetime.rst:232
247+
#: ../../c-api/datetime.rst:248
236248
msgid ""
237249
"Create and return a new :class:`datetime.date` object given an argument "
238250
"tuple suitable for passing to :meth:`datetime.date.fromtimestamp()`."

0 commit comments

Comments
 (0)