|
7 | 7 | # Claudio Rogerio Carvalho Filho <excriptbrasil@gmail.com>, 2021 |
8 | 8 | # Livia Cavalcanti <livia.juliao@ccc.ufcg.edu.br>, 2021 |
9 | 9 | # Marco Rougeth <marco@rougeth.com>, 2023 |
10 | | -# Rafael Fontenelle <rffontenelle@gmail.com>, 2023 |
| 10 | +# Rafael Fontenelle <rffontenelle@gmail.com>, 2024 |
11 | 11 | # |
12 | 12 | #, fuzzy |
13 | 13 | msgid "" |
14 | 14 | msgstr "" |
15 | 15 | "Project-Id-Version: Python 3.13\n" |
16 | 16 | "Report-Msgid-Bugs-To: \n" |
17 | | -"POT-Creation-Date: 2024-05-11 02:33+0000\n" |
| 17 | +"POT-Creation-Date: 2024-07-05 14:16+0000\n" |
18 | 18 | "PO-Revision-Date: 2021-06-28 00:49+0000\n" |
19 | | -"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2023\n" |
| 19 | +"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n" |
20 | 20 | "Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/" |
21 | 21 | "teams/5390/pt_BR/)\n" |
22 | 22 | "MIME-Version: 1.0\n" |
@@ -96,12 +96,18 @@ msgid "" |
96 | 96 | "supported. If *index* is out of bounds (:code:`<0 or >=len(list)`), return " |
97 | 97 | "``NULL`` and set an :exc:`IndexError` exception." |
98 | 98 | msgstr "" |
| 99 | +"Retorna o objeto na posição *index* na lista apontada por *list*. A posição " |
| 100 | +"deve ser não negativa; não há suporte à indexação do final da lista. Se " |
| 101 | +"*index* estiver fora dos limites (:code:`<0 or >=len(list)`), retorna " |
| 102 | +"``NULL`` e levanta uma exceção :exc:`IndexError`." |
99 | 103 |
|
100 | 104 | #: ../../c-api/list.rst:71 |
101 | 105 | msgid "" |
102 | 106 | "Like :c:func:`PyList_GetItemRef`, but returns a :term:`borrowed reference` " |
103 | 107 | "instead of a :term:`strong reference`." |
104 | 108 | msgstr "" |
| 109 | +"Como :c:func:`PyList_GetItemRef`, mas retorna uma :term:`referência " |
| 110 | +"emprestada` em vez de uma :term:`referência forte`." |
105 | 111 |
|
106 | 112 | #: ../../c-api/list.rst:77 |
107 | 113 | msgid "Similar to :c:func:`PyList_GetItem`, but without error checking." |
@@ -139,6 +145,9 @@ msgid "" |
139 | 145 | "Bounds checking is performed as an assertion if Python is built in :ref:" |
140 | 146 | "`debug mode <debug-build>` or :option:`with assertions <--with-assertions>`." |
141 | 147 | msgstr "" |
| 148 | +"A verificação de limites é realizada como uma asserção se o Python for " |
| 149 | +"construído em :ref:`modo de depuração <debug-build>` ou :option:`com " |
| 150 | +"asserções <--with-assertions>`." |
142 | 151 |
|
143 | 152 | #: ../../c-api/list.rst:103 |
144 | 153 | msgid "" |
@@ -201,25 +210,34 @@ msgid "" |
201 | 210 | "``PyList_SetSlice(list, PY_SSIZE_T_MAX, PY_SSIZE_T_MAX, iterable)`` and " |
202 | 211 | "analogous to ``list.extend(iterable)`` or ``list += iterable``." |
203 | 212 | msgstr "" |
| 213 | +"Estende *list* com o conteúdo de *iterable*. Isto é o mesmo que " |
| 214 | +"``PyList_SetSlice(list, PY_SSIZE_T_MAX, PY_SSIZE_T_MAX, iterable)`` e " |
| 215 | +"análogo a ``list.extend(iterable)`` ou ``list += iterable``." |
204 | 216 |
|
205 | 217 | #: ../../c-api/list.rst:145 |
206 | 218 | msgid "" |
207 | 219 | "Raise an exception and return ``-1`` if *list* is not a :class:`list` " |
208 | 220 | "object. Return 0 on success." |
209 | 221 | msgstr "" |
| 222 | +"Levanta uma exceção e retorna ``-1`` se *list* não for um objeto :class:" |
| 223 | +"`list`. Retorna 0 em caso de sucesso." |
210 | 224 |
|
211 | 225 | #: ../../c-api/list.rst:153 |
212 | 226 | msgid "" |
213 | 227 | "Remove all items from *list*. This is the same as ``PyList_SetSlice(list, " |
214 | 228 | "0, PY_SSIZE_T_MAX, NULL)`` and analogous to ``list.clear()`` or ``del " |
215 | 229 | "list[:]``." |
216 | 230 | msgstr "" |
| 231 | +"Remove todos os itens da *lista*. Isto é o mesmo que ``PyList_SetSlice(list, " |
| 232 | +"0, PY_SSIZE_T_MAX, NULL)`` e análogo a ``list.clear()`` ou ``del list[:]``." |
217 | 233 |
|
218 | 234 | #: ../../c-api/list.rst:157 |
219 | 235 | msgid "" |
220 | 236 | "Raise an exception and return ``-1`` if *list* is not a :class:`list` " |
221 | 237 | "object. Return 0 on success." |
222 | 238 | msgstr "" |
| 239 | +"Levanta uma exceção e retorna ``-1`` se *list* não for um objeto :class:" |
| 240 | +"`list`. Retorna 0 em caso de sucesso." |
223 | 241 |
|
224 | 242 | #: ../../c-api/list.rst:165 |
225 | 243 | msgid "" |
|
0 commit comments