8000 Update translations from Transifex · python/python-docs-pt-br@3e9a50e · GitHub
[go: up one dir, main page]

Skip to content

Commit 3e9a50e

Browse files
author
github-actions
committed
Update translations from Transifex
1 parent 9a9b91b commit 3e9a50e

21 files changed

+2990
-2849
lines changed

c-api/bytearray.po

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ msgid ""
1313
msgstr ""
1414
"Project-Id-Version: Python 3.13\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2024-05-24 14:15+0000\n"
16+
"POT-Creation-Date: 2024-08-09 14:15+0000\n"
1717
"PO-Revision-Date: 2021-06-28 00:47+0000\n"
1818
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2023\n"
1919
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
@@ -75,27 +75,28 @@ msgstr ""
7575
"Retorna um novo objeto bytearray, *o*, que implementa o :ref:`protocolo de "
7676
"buffer<bufferobjects>`."
7777

78-
#: ../../c-api/bytearray.rst:48
79-
msgid ""
80-
"Create a new bytearray object from *string* and its length, *len*. On "
81-
"failure, ``NULL`` is returned."
78+
#: ../../c-api/bytearray.rst:45 ../../c-api/bytearray.rst:52
79+
#: ../../c-api/bytearray.rst:59
80+
msgid "On failure, return ``NULL`` with an exception set."
81+
msgstr ""
82+
83+
#: ../../c-api/bytearray.rst:50
84+
msgid "Create a new bytearray object from *string* and its length, *len*."
8285
msgstr ""
83-
"Cria um novo objeto bytearray a partir de *string* e seu comprimento, *len*. "
84-
"Em caso de falha, ``NULL`` é retornado."
8586

86-
#: ../../c-api/bytearray.rst:54
87+
#: ../../c-api/bytearray.rst:57
8788
msgid ""
8889
"Concat bytearrays *a* and *b* and return a new bytearray with the result."
8990
msgstr ""
9091
"Concatena os bytearrays *a* e *b* e retorna um novo bytearray com o "
9192
"resultado."
9293

93-
#: ../../c-api/bytearray.rst:59
94+
#: ../../c-api/bytearray.rst:64
9495
msgid "Return the size of *bytearray* after checking for a ``NULL`` pointer."
9596
msgstr ""
9697
"Retorna o tamanho de *bytearray* após verificar se há um ponteiro ``NULL``."
9798

98-
#: ../../c-api/bytearray.rst:64
99+
#: ../../c-api/bytearray.rst:69
99100
msgid ""
100101
"Return the contents of *bytearray* as a char array after checking for a "
101102
"``NULL`` pointer. The returned array always has an extra null byte appended."
@@ -104,24 +105,24 @@ msgstr ""
104105
"verificar um ponteiro ``NULL``. A matriz retornada sempre tem um byte nulo "
105106
"extra acrescentado."
106107

107-
#: ../../c-api/bytearray.rst:71
108+
#: ../../c-api/bytearray.rst:76
108109
msgid "Resize the internal buffer of *bytearray* to *len*."
109110
msgstr "Redimensiona o buffer interno de *bytearray* para o tamanho *len*."
< 8000 code>110111

111-
#: ../../c-api/bytearray.rst:74
112+
#: ../../c-api/bytearray.rst:79
112113
msgid "Macros"
113114
msgstr "Macros"
114115

115-
#: ../../c-api/bytearray.rst:76
116+
#: ../../c-api/bytearray.rst:81
116117
msgid "These macros trade safety for speed and they don't check pointers."
117118
msgstr ""
118119
"Estas macros trocam segurança por velocidade e não verificam os ponteiros."
119120

120-
#: ../../c-api/bytearray.rst:80
121+
#: ../../c-api/bytearray.rst:85
121122
msgid "Similar to :c:func:`PyByteArray_AsString`, but without error checking."
122123
msgstr "Similar a :c:func:`PyByteArray_AsString`, mas sem verificação de erro."
123124

124-
#: ../../c-api/bytearray.rst:85
125+
#: ../../c-api/bytearray.rst:90
125126
msgid "Similar to :c:func:`PyByteArray_Size`, but without error checking."
126127
msgstr "Similar a :c:func:`PyByteArray_Size`, mas sem verificação de erro."
127128

c-api/long.po

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ msgid ""
1515
msgstr ""
1616
"Project-Id-Version: Python 3.13\n"
1717
"Report-Msgid-Bugs-To: \n"
18-
"POT-Creation-Date: 2024-07-05 14:16+0000\n"
18+
"POT-Creation-Date: 2024-08-09 14:15+0000\n"
1919
"PO-Revision-Date: 2021-06-28 00:49+0000\n"
2020
"Last-Translator: Welington Carlos <wcarlos3@gmail.com>, 2024\n"
2121
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
@@ -592,34 +592,45 @@ msgid ""
592592
msgstr ""
593593

594594
#: ../../c-api/long.rst:506
595+
msgid ""
596+
"On success, return a read only :term:`named tuple`, that holds information "
597+
"about Python's internal representation of integers. See :data:`sys.int_info` "
598+
"for description of individual fields."
599+
msgstr ""
600+
601+
#: ../../c-api/long.rst:510
602+
msgid "On failure, return ``NULL`` with an exception set."
603+
msgstr ""
604+
605+
#: ../../c-api/long.rst:517
595606
msgid "Return 1 if *op* is compact, 0 otherwise."
596607
msgstr ""
597608

598-
#: ../../c-api/long.rst:508
609+
#: ../../c-api/long.rst:519
599610
msgid ""
600611
"This function makes it possible for performance-critical code to implement a "
601612
"“fast path” for small integers. For compact values use :c:func:"
602613
"`PyUnstable_Long_CompactValue`; for others fall back to a :c:func:"
603614
"`PyLong_As* <PyLong_AsSize_t>` function or :c:func:`PyLong_AsNativeBytes`."
604615
msgstr ""
605616

606-
#: ../../c-api/long.rst:514
617+
#: ../../c-api/long.rst:525
607618
msgid "The speedup is expected to be negligible for most users."
608619
msgstr ""
609620

610-
#: ../../c-api/long.rst:516
621+
#: ../../c-api/long.rst:527
611622
msgid ""
612623
"Exactly what values are considered compact is an implementation detail and "
613624
"is subject to change."
614625
msgstr ""
615626

616-
#: ../../c-api/long.rst:521
627+
#: ../../c-api/long.rst:532
617628
msgid ""
618629
"If *op* is compact, as determined by :c:func:`PyUnstable_Long_IsCompact`, "
619630
"return its value."
620631
msgstr ""
621632

622-
#: ../../c-api/long.rst:524
633+
#: ../../c-api/long.rst:535
623634
msgid "Otherwise, the return value is undefined."
624635
msgstr ""
625636

0 commit comments

Comments
 (0)
0