Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit3a6cdba

Browse files
Update translation
Co-Authored-By: python-doc bot
1 parent08473b8 commit3a6cdba

File tree

14 files changed

+34
-99
lines changed

14 files changed

+34
-99
lines changed

‎glossary.po‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,8 @@ msgid ""
136136
"in the :attr:`__annotations__` special attribute of modules, classes, and "
137137
"functions, respectively."
138138
msgstr""
139-
"Anotações de variáveis locais não podem ser acessadas em tempo de execução, "
140-
"mas anotações de variáveis globais, atributos de classe e funções são "
139+
"Anotações de variáveislocais não podem ser acessadas em tempo de execução, "
140+
"mas anotações de variáveisglobais, atributos de classe e funções são "
141141
"armazenadas no atributo especial :attr:`__annotations__` de módulos, classes "
142142
"e funções, respectivamente."
143143

‎howto/sorting.po‎

Lines changed: 5 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,13 @@
33
# This file is distributed under the same license as the Python package.
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
6-
# Translators:
7-
# python-doc bot, 2025
8-
#
96
#,fuzzy
107
msgid ""
118
msgstr ""
129
"Project-Id-Version:Python 3.10\n"
1310
"Report-Msgid-Bugs-To:\n"
14-
"POT-Creation-Date:2025-09-13 16:59+0000\n"
11+
"POT-Creation-Date:2025-09-15 17:10+0000\n"
1512
"PO-Revision-Date:2025-09-12 23:37+0000\n"
16-
"Last-Translator:python-doc bot, 2025\n"
1713
"Language-Team:Portuguese (Brazil) (https://app.transifex.com/python-doc/"
1814
"teams/5390/pt_BR/)\n"
1915
"Language:pt_BR\n"
@@ -236,7 +232,7 @@ msgstr ""
236232

237233
#:../../howto/sorting.rst:190
238234
msgid"The Old Way Using Decorate-Sort-Undecorate"
239-
msgstr"A velha maneira utilizando Decorate-Sort-Undecorate"
235+
msgstr""
240236

241237
#:../../howto/sorting.rst:192
242238
msgid"This idiom is called Decorate-Sort-Undecorate after its three steps:"
@@ -329,7 +325,7 @@ msgstr ""
329325

330326
#:../../howto/sorting.rst:231
331327
msgid"The Old Way Using the *cmp* Parameter"
332-
msgstr"O método antigo utilizando o parâmetro *cmp*"
328+
msgstr""
333329

334330
#:../../howto/sorting.rst:233
335331
msgid""
@@ -338,21 +334,13 @@ msgid ""
338334
"arguments. Instead, all of the Py2.x versions supported a *cmp* parameter to "
339335
"handle user specified comparison functions."
340336
msgstr""
341-
"Muitos construtores apresentados neste HOWTO assumem o uso do Python 2.4 ou "
342-
"superior. Antes disso, não havia a função embutida :func:`sorted` e o "
343-
"método :meth:`list.sort` não recebia os argumentos nomeados. Apesar disso, "
344-
"todas as versões do Py2.x suportam o parâmetro *cmp* para lidar com a função "
345-
"de comparação especificada pelo usuário."
346337

347338
#:../../howto/sorting.rst:238
348339
msgid""
349340
"In Py3.0, the *cmp* parameter was removed entirely (as part of a larger "
350341
"effort to simplify and unify the language, eliminating the conflict between "
351342
"rich comparisons and the :meth:`__cmp__` magic method)."
352343
msgstr""
353-
"No Py3.0, o parâmetro *cmp* foi removido totalmente (como parte de um grande "
354-
"esforço para simplificar e unificar a linguagem, eliminando o conflito entre "
355-
"comparações enriquecidas e o método mágico :meth:`__cmp__`)"
356344

357345
#:../../howto/sorting.rst:242
358346
msgid""
@@ -361,51 +349,37 @@ msgid ""
361349
"then return a negative value for less-than, return zero if they are equal, "
362350
"or return a positive value for greater-than. For example, we can do:"
363351
msgstr""
364-
"No Py2.x, ordenação permite uma função opcional que pode ser invocada para "
365-
"fazer comparações. Esta função pode receber dois argumentos para serem "
366-
"comparados e retorna um valor negativo para o menor-que, retorna zero se "
367-
"eles são iguais, ou retorna um valor positivo para o maior-que. Por exemplo, "
368-
"podemos fazer:"
369352

370353
#:../../howto/sorting.rst:254
371354
msgid"Or you can reverse the order of comparison with:"
372-
msgstr"Ou podemos inverter a ordem de comparação com:"
355+
msgstr""
373356

374357
#:../../howto/sorting.rst:263
375358
msgid""
376359
"When porting code from Python 2.x to 3.x, the situation can arise when you "
377360
"have the user supplying a comparison function and you need to convert that "
378361
"to a key function. The following wrapper makes that easy to do:"
379362
msgstr""
380-
"Ao migrar código Python 2.x para 3.x, pode surgir a situação em que foi "
381-
"fornecida uma função de comparação e é necessário convertê-la para uma "
382-
"função chave. Eis uma forma de facilitar isso:"
383363

384364
#:../../howto/sorting.rst:294
385365
msgid"To convert to a key function, just wrap the old comparison function:"
386366
msgstr""
387-
"Para converter a função chave, apenas empacote a velha função de comparação:"
388367

389368
#:../../howto/sorting.rst:305
390369
msgid""
391370
"In Python 3.2, the :func:`functools.cmp_to_key` function was added to the :"
392371
"mod:`functools` module in the standard library."
393372
msgstr""
394-
"No Python 3.2, a função :func:`functools.cmp_to_key` foi adicionada ao "
395-
"módulo :mod:`functools` na biblioteca padrão."
396373

397374
#:../../howto/sorting.rst:309
398375
msgid"Odd and Ends"
399-
msgstr"Ímpares e extremidades"
376+
msgstr""
400377

401378
#:../../howto/sorting.rst:311
402379
msgid""
403380
"For locale aware sorting, use :func:`locale.strxfrm` for a key function or :"
404381
"func:`locale.strcoll` for a comparison function."
405382
msgstr""
406-
"Para ordenação com reconhecimento de localidade, use :func:`locale.strxfrm` "
407-
"para uma função chave ou :func:`locale.strcoll` para uma função de "
408-
"comparação."
409383

410384
#:../../howto/sorting.rst:314
411385
msgid""
@@ -425,17 +399,12 @@ msgid ""
425399
"it is easy to add a standard sort order to a class by defining an :meth:"
426400
"`__lt__` method:"
427401
msgstr""
428-
"As rotinas de classificação usam ``<`` ao fazer comparações entre dois "
429-
"objetos. Portanto, é fácil adicionar uma ordem de classificação padrão a uma "
430-
"classe definindo um método :meth:`__lt__`:"
431402

432403
#:../../howto/sorting.rst:338
433404
msgid""
434405
"However, note that ``<`` can fall back to using :meth:`__gt__` if :meth:"
435406
"`__lt__` is not implemented (see :func:`object.__lt__`)."
436407
msgstr""
437-
"No entanto, note que pode voltar a usar :meth:`__gt__` se :meth:`__lt__` não "
438-
"estiver implementado (veja :func:`object.__lt__`)."
439408

440409
#:../../howto/sorting.rst:341
441410
msgid""

‎howto/unicode.po‎

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,13 @@
33
# This file is distributed under the same license as the Python package.
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
6-
# Translators:
7-
# python-doc bot, 2025
8-
#
96
#,fuzzy
107
msgid ""
118
msgstr ""
129
"Project-Id-Version:Python 3.10\n"
1310
"Report-Msgid-Bugs-To:\n"
14-
"POT-Creation-Date:2025-09-13 16:59+0000\n"
11+
"POT-Creation-Date:2025-09-16 20:14+0000\n"
1512
"PO-Revision-Date:2025-09-12 23:37+0000\n"
16-
"Last-Translator:python-doc bot, 2025\n"
1713
"Language-Team:Portuguese (Brazil) (https://app.transifex.com/python-doc/"
1814
"teams/5390/pt_BR/)\n"
1915
"Language:pt_BR\n"

‎howto/urllib2.po‎

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,13 @@
33
# This file is distributed under the same license as the Python package.
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
6-
# Translators:
7-
# python-doc bot, 2025
8-
#
96
#,fuzzy
107
msgid ""
118
msgstr ""
129
"Project-Id-Version:Python 3.10\n"
1310
"Report-Msgid-Bugs-To:\n"
14-
"POT-Creation-Date:2025-09-13 16:59+0000\n"
11+
"POT-Creation-Date:2025-09-16 20:14+0000\n"
1512
"PO-Revision-Date:2025-09-12 23:37+0000\n"
16-
"Last-Translator:python-doc bot, 2025\n"
1713
"Language-Team:Portuguese (Brazil) (https://app.transifex.com/python-doc/"
1814
"teams/5390/pt_BR/)\n"
1915
"Language:pt_BR\n"

‎install/index.po‎

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,13 @@
33
# This file is distributed under the same license as the Python package.
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
6-
# Translators:
7-
# python-doc bot, 2025
8-
#
96
#,fuzzy
107
msgid ""
118
msgstr ""
129
"Project-Id-Version:Python 3.10\n"
1310
"Report-Msgid-Bugs-To:\n"
14-
"POT-Creation-Date:2025-09-13 16:59+0000\n"
11+
"POT-Creation-Date:2025-09-16 20:14+0000\n"
1512
"PO-Revision-Date:2025-09-12 23:37+0000\n"
16-
"Last-Translator:python-doc bot, 2025\n"
1713
"Language-Team:Portuguese (Brazil) (https://app.transifex.com/python-doc/"
1814
"teams/5390/pt_BR/)\n"
1915
"Language:pt_BR\n"
@@ -747,10 +743,6 @@ msgid ""
747743
"`sitecustomize` (see :mod:`site`) to call :func:`site.addsitedir` or edit :"
748744
"data:`sys.path`."
749745
msgstr""
750-
"Para fazer o Python encontrar as distribuições instaladas com este esquema, "
751-
"você deve :ref:`modificar o caminho de pesquisa do Python <inst-search-"
752-
"path>` ou editar :mod:`sitecustomize` (veja :mod:`site`) para chamar :func:"
753-
"`site.additedir` ou editar :data:`sys.path`."
754746

755747
#:../../install/index.rst:376
756748
msgid""
@@ -1319,10 +1311,6 @@ msgid ""
13191311
"overwritten by the stock version. You'd have to remember that it was "
13201312
"modified and save a copy before doing the installation."
13211313
msgstr""
1322-
"No entanto, se você reinstalar a mesma versão principal do Python (talvez ao "
1323-
"atualizar de 2.2 para 2.2.2, por exemplo) :file:`site.py` será substituído "
1324-
"pela versão padrão. Você teria que lembrar que ele foi modificado e salvar "
1325-
"uma cópia antes de fazer a instalação."
13261314

13271315
#:../../install/index.rst:700
13281316
msgid""
@@ -1478,10 +1466,6 @@ msgid ""
14781466
"from the standard :mod:`pwd` module. This is done by the :func:`os.path."
14791467
"expanduser` function used by Distutils."
14801468
msgstr""
1481-
"No Unix, se a variável de ambiente :envvar:`HOME` não estiver definida, o "
1482-
"diretório home do usuário será determinado com a função :func:`getpwuid` do "
1483-
"módulo padrão :mod:`pwd`. Isso é feito pela função :func:`os.path."
1484-
"expanduser` usada pelo Distutils."
14851469

14861470
#:../../install/index.rst:782
14871471
msgid""

‎installing/index.po‎

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,13 @@
33
# This file is distributed under the same license as the Python package.
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
6-
# Translators:
7-
# python-doc bot, 2025
8-
#
96
#,fuzzy
107
msgid ""
118
msgstr ""
129
"Project-Id-Version:Python 3.10\n"
1310
"Report-Msgid-Bugs-To:\n"
14-
"POT-Creation-Date:2025-09-13 16:59+0000\n"
11+
"POT-Creation-Date:2025-09-16 20:14+0000\n"
1512
"PO-Revision-Date:2025-09-12 23:37+0000\n"
16-
"Last-Translator:python-doc bot, 2025\n"
1713
"Language-Team:Portuguese (Brazil) (https://app.transifex.com/python-doc/"
1814
"teams/5390/pt_BR/)\n"
1915
"Language:pt_BR\n"
@@ -64,9 +60,6 @@ msgid ""
6460
"creating and sharing your own Python projects, refer to the :ref:"
6561
"`distribution guide <distributing-index>`."
6662
msgstr""
67-
"Este guia cobre a parte do processo de instalação. Para um guia sobre criar "
68-
"e compartilhar seus próprios projetos Python, refira-se à :ref:`guia de "
69-
"distribuição <distributing-index>`."
7063

7164
#:../../installing/index.rst:26
7265
msgid""

‎library/html.po‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ msgstr ""
6666

6767
#:../../library/html.rst:36
6868
msgid"Submodules in the ``html`` package are:"
69-
msgstr"Submódulos no pacote ``html`` são:"
69+
msgstr"Sub módulos no pacote ``html`` são:"
7070

7171
#:../../library/html.rst:38
7272
msgid":mod:`html.parser` -- HTML/XHTML parser with lenient parsing mode"

‎library/mimetypes.po‎

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ msgid ""
210210
"leading dot (``'.'``), to strings of the form ``'type/subtype'``. If the "
211211
"file *filename* does not exist or cannot be read, ``None`` is returned."
212212
msgstr""
213-
"Carrega o mapa de tipos fornecido no arquivo *filename*, se existir. O mapa "
213+
"Carregue o mapa de tipos fornecido no arquivo *filename*, se existir. O mapa "
214214
"de tipos é retornado como um dicionário que faz o mapeamento de extensões de "
215215
"nome de arquivo, incluindo o ponto inicial (``'.'``), para strings no "
216216
"formato ``'tipo/subtipo'``. Se o arquivo *filename* não existir ou não puder "
@@ -223,17 +223,12 @@ msgid ""
223223
"type is already known the extension will be added to the list of known "
224224
"extensions."
225225
msgstr""
226-
"Adiciona um mapeamento do tipo MIME *type* à extensão *ext*. Quando a "
227-
"extensão já for conhecida, o novo tipo substituirá o antigo. Quando o tipo "
228-
"já for conhecido, a extensão será adicionada à lista de extensões conhecidas."
229226

230227
#:../../library/mimetypes.rst:118
231228
msgid""
232229
"When *strict* is ``True`` (the default), the mapping will be added to the "
233230
"official MIME types, otherwise to the non-standard ones."
234231
msgstr""
235-
"Quando *strict* for ``True`` (o padrão), o mapeamento será adicionado aos "
236-
"tipos MIME oficiais, caso contrário, aos não-padrões."
237232

238233
#:../../library/mimetypes.rst:124
239234
msgid""

‎library/ssl.po‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2628,7 +2628,7 @@ msgstr ""
26282628

26292629
#:../../library/ssl.rst:2461
26302630
msgid"Memory BIO Support"
2631-
msgstr"Підтримка BIO пам'яті"
2631+
msgstr""
26322632

26332633
#:../../library/ssl.rst:2465
26342634
msgid""

‎potodo.md‎

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
- programming.po 383 / 388 ( 98.0% translated).
6060

6161

62-
#howto (61.30% done)
62+
#howto (60.75% done)
6363

6464
- annotations.po 44 / 45 ( 97.0% translated).
6565
- argparse.po 81 / 84 ( 96.0% translated).
@@ -73,20 +73,22 @@
7373
- pyporting.po 35 / 86 ( 40.0% translated).
7474
- regex.po 283 / 286 ( 98.0% translated).
7575
- sockets.po 35 / 58 ( 60.0% translated).
76+
- sorting.po 42 / 55 ( 76.0% translated).
7677
- unicode.po 30 / 121 ( 24.0% translated).
7778
- urllib2.po 72 / 85 ( 84.0% translated).
7879

7980

80-
#install (74.34% done)
81+
#install (73.01% done)
8182

82-
- index.po168 / 226 (74.0% translated).
83+
- index.po165 / 226 (73.0% translated).
8384

8485

85-
#installing (100.00% done)
86+
#installing (98.11% done)
8687

88+
- index.po 52 / 53 ( 98.0% translated).
8789

8890

89-
#library (62.48% done)
91+
#library (62.47% done)
9092

9193
-_thread.po 39 / 41 ( 95.0% translated).
9294
- argparse.po 256 / 290 ( 88.0% translated).
@@ -185,7 +187,7 @@
185187
- mailbox.po 20 / 282 ( 7.0% translated).
186188
- mailcap.po 2 / 15 ( 13.0% translated).
187189
- math.po 117 / 118 ( 99.0% translated).
188-
- mimetypes.po24 / 45 (53.0% translated).
190+
- mimetypes.po22 / 45 (48.0% translated).
189191
- mmap.po 20 / 50 ( 40.0% translated).
190192
- msilib.po 7 / 96 ( 7.0% translated).
191193
- multiprocessing.po 284 / 519 ( 54.0% translated).
@@ -221,7 +223,7 @@
221223
- socket.po 60 / 324 ( 18.0% translated).
222224
- socketserver.po 67 / 78 ( 85.0% translated).
223225
- sqlite3.po 76 / 287 ( 26.0% translated).
224-
- ssl.po64 / 493 ( 12.0% translated).
226+
- ssl.po63 / 493 ( 12.0% translated).
225227
- stat.po 78 / 81 ( 96.0% translated).
226228
- statistics.po 169 / 172 ( 98.0% translated).
227229
- stdtypes.po 1022 / 1026 ( 99.0% translated).
@@ -305,7 +307,7 @@
305307
- windows.po 307 / 309 ( 99.0% translated).
306308

307309

308-
#whatsnew (70.24% done)
310+
#whatsnew (70.22% done)
309311

310312
- 2.0.po 137 / 182 ( 75.0% translated).
311313
- 2.2.po 138 / 192 ( 71.0% translated).
@@ -315,13 +317,13 @@
315317
- 2.6.po 535 / 539 ( 99.0% translated).
316318
- 2.7.po 442 / 453 ( 97.0% translated).
317319
- 3.10.po 513 / 523 ( 98.0% translated).
318-
- 3.2.po70 / 518 ( 13.0% translated).
320+
- 3.2.po69 / 518 ( 13.0% translated).
319321
- 3.3.po 159 / 660 ( 24.0% translated).
320322
- 3.4.po 510 / 511 ( 99.0% translated).
321-
- 3.5.po128 / 541 ( 23.0% translated).
323+
- 3.5.po127 / 541 ( 23.0% translated).
322324
- 3.6.po 239 / 517 ( 46.0% translated).
323325
- 3.7.po 243 / 555 ( 43.0% translated).
324326

325327

326-
#TOTAL (65.96% done)
328+
#TOTAL (65.91% done)
327329

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp