Skip to content

Commit b7ae5dc

Browse files
Update translation
1 parent 593eb02 commit b7ae5dc

File tree

4 files changed

+11517
-11511
lines changed

4 files changed

+11517
-11511
lines changed

howto/sorting.po

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
# SOME DESCRIPTIVE TITLE.
2-
# Copyright (C) 2001-2025, Python Software Foundation
2+
# Copyright (C) 2001-2026, Python Software Foundation
33
# This file is distributed under the same license as the Python package.
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
66
# Translators:
77
# python-doc bot, 2025
8-
# Cezar Gabriel, 2025
8+
# Cezar Gabriel Lima <cezargabriel11@gmail.com>, 2025
99
#
1010
#, fuzzy
1111
msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.13\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2025-09-23 14:56+0000\n"
15+
"POT-Creation-Date: 2026-01-25 14:58+0000\n"
1616
"PO-Revision-Date: 2025-09-15 01:03+0000\n"
17-
"Last-Translator: Cezar Gabriel, 2025\n"
17+
"Last-Translator: Cezar Gabriel Lima <cezargabriel11@gmail.com>, 2025\n"
1818
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
1919
"teams/5390/pt_BR/)\n"
2020
"Language: pt_BR\n"

library/base64.po

Lines changed: 22 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# SOME DESCRIPTIVE TITLE.
2-
# Copyright (C) 2001-2025, Python Software Foundation
2+
# Copyright (C) 2001-2026, Python Software Foundation
33
# This file is distributed under the same license as the Python package.
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.13\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2025-09-15 15:19+0000\n"
14+
"POT-Creation-Date: 2026-01-25 14:58+0000\n"
1515
"PO-Revision-Date: 2025-09-15 01:03+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
@@ -353,64 +353,63 @@ msgstr ""
353353

354354
#: ../../library/base64.rst:242
355355
msgid ""
356-
"*ignorechars* should be a :term:`bytes-like object` or ASCII string "
357-
"containing characters to ignore from the input. This should only contain "
358-
"whitespace characters, and by default contains all whitespace characters in "
359-
"ASCII."
356+
"*ignorechars* should be a byte string containing characters to ignore from "
357+
"the input. This should only contain whitespace characters, and by default "
358+
"contains all whitespace characters in ASCII."
360359
msgstr ""
361360

362-
#: ../../library/base64.rst:252
361+
#: ../../library/base64.rst:251
363362
msgid ""
364363
"Encode the :term:`bytes-like object` *b* using base85 (as used in e.g. git-"
365364
"style binary diffs) and return the encoded :class:`bytes`."
366365
msgstr ""
367366

368-
#: ../../library/base64.rst:255
367+
#: ../../library/base64.rst:254
369368
msgid ""
370369
"If *pad* is true, the input is padded with ``b'\\0'`` so its length is a "
371370
"multiple of 4 bytes before encoding."
372371
msgstr ""
373372

374-
#: ../../library/base64.rst:263
373+
#: ../../library/base64.rst:262
375374
msgid ""
376375
"Decode the base85-encoded :term:`bytes-like object` or ASCII string *b* and "
377376
"return the decoded :class:`bytes`. Padding is implicitly removed, if "
378377
"necessary."
379378
msgstr ""
380379

381-
#: ../../library/base64.rst:272
380+
#: ../../library/base64.rst:271
382381
msgid ""
383382
"Encode the :term:`bytes-like object` *s* using Z85 (as used in ZeroMQ) and "
384383
"return the encoded :class:`bytes`. See `Z85 specification <https://rfc."
385384
"zeromq.org/spec/32/>`_ for more information."
386385
msgstr ""
387386

388-
#: ../../library/base64.rst:281
387+
#: ../../library/base64.rst:280
389388
msgid ""
390389
"Decode the Z85-encoded :term:`bytes-like object` or ASCII string *s* and "
391390
"return the decoded :class:`bytes`. See `Z85 specification <https://rfc."
392391
"zeromq.org/spec/32/>`_ for more information."
393392
msgstr ""
394393

395-
#: ../../library/base64.rst:291
394+
#: ../../library/base64.rst:290
396395
msgid "Legacy Interface"
397396
msgstr ""
398397

399-
#: ../../library/base64.rst:295
398+
#: ../../library/base64.rst:294
400399
msgid ""
401400
"Decode the contents of the binary *input* file and write the resulting "
402401
"binary data to the *output* file. *input* and *output* must be :term:`file "
403402
"objects <file object>`. *input* will be read until ``input.readline()`` "
404403
"returns an empty bytes object."
405404
msgstr ""
406405

407-
#: ../../library/base64.rst:303
406+
#: ../../library/base64.rst:302
408407
msgid ""
409408
"Decode the :term:`bytes-like object` *s*, which must contain one or more "
410409
"lines of base64 encoded data, and return the decoded :class:`bytes`."
411410
msgstr ""
412411

413-
#: ../../library/base64.rst:311
412+
#: ../../library/base64.rst:310
414413
msgid ""
415414
"Encode the contents of the binary *input* file and write the resulting "
416415
"base64 encoded data to the *output* file. *input* and *output* must be :term:"
@@ -420,48 +419,48 @@ msgid ""
420419
"the output always ends with a newline, as per :rfc:`2045` (MIME)."
421420
msgstr ""
422421

423-
#: ../../library/base64.rst:321
422+
#: ../../library/base64.rst:320
424423
msgid ""
425424
"Encode the :term:`bytes-like object` *s*, which can contain arbitrary binary "
426425
"data, and return :class:`bytes` containing the base64-encoded data, with "
427426
"newlines (``b'\\n'``) inserted after every 76 bytes of output, and ensuring "
428427
"that there is a trailing newline, as per :rfc:`2045` (MIME)."
429428
msgstr ""
430429

431-
#: ../../library/base64.rst:329
430+
#: ../../library/base64.rst:328
432431
msgid "An example usage of the module:"
433432
msgstr "Um exemplo de uso do módulo:"
434433

435-
#: ../../library/base64.rst:342
434+
#: ../../library/base64.rst:341
436435
msgid "Security Considerations"
437436
msgstr "Considerações de Segurança"
438437

439-
#: ../../library/base64.rst:344
438+
#: ../../library/base64.rst:343
440439
msgid ""
441440
"A new security considerations section was added to :rfc:`4648` (section 12); "
442441
"it's recommended to review the security section for any code deployed to "
443442
"production."
444443
msgstr ""
445444

446-
#: ../../library/base64.rst:349
445+
#: ../../library/base64.rst:348
447446
msgid "Module :mod:`binascii`"
448447
msgstr "Módulo :mod:`binascii`"
449448

450-
#: ../../library/base64.rst:350
449+
#: ../../library/base64.rst:349
451450
msgid ""
452451
"Support module containing ASCII-to-binary and binary-to-ASCII conversions."
453452
msgstr ""
454453
"Módulo de suporte contendo conversões ASCII para binário e binário para "
455454
"ASCII."
456455

457-
#: ../../library/base64.rst:352
456+
#: ../../library/base64.rst:351
458457
msgid ""
459458
":rfc:`1521` - MIME (Multipurpose Internet Mail Extensions) Part One: "
460459
"Mechanisms for Specifying and Describing the Format of Internet Message "
461460
"Bodies"
462461
msgstr ""
463462

464-
#: ../../library/base64.rst:353
463+
#: ../../library/base64.rst:352
465464
msgid ""
466465
"Section 5.2, \"Base64 Content-Transfer-Encoding,\" provides the definition "
467466
"of the base64 encoding."

stats.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"completion": "61.35%", "translated": 50056, "entries": 77148, "updated_at": "2026-01-23T23:28:08+00:00Z"}
1+
{"completion": "61.35%", "translated": 50056, "entries": 77148, "updated_at": "2026-01-25T23:25:30+00:00Z"}

0 commit comments

Comments
 (0)