Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c869cf1

Browse files
Update translations
1 parent 35e846f commit c869cf1

File tree

14 files changed

+181
-46
lines changed

14 files changed

+181
-46
lines changed

faq/programming.po

Lines changed: 38 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.11\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2025-01-10 15:26+0000\n"
14+
"POT-Creation-Date: 2025-01-21 22:20+0000\n"
1515
"PO-Revision-Date: 2023-05-24 02:11+0000\n"
1616
"Last-Translator: Rafael Fontenelle <[email protected]>, 2025\n"
1717
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
@@ -2935,6 +2935,14 @@ msgid ""
29352935
"file, and ends with ``.pyc``, with a middle component that depends on the "
29362936
"particular ``python`` binary that created it. (See :pep:`3147` for details.)"
29372937
msgstr ""
2938+
"Quando um módulo é importado pela primeira vez (ou quando o arquivo de "
2939+
"origem foi alterado desde que o arquivo compilado atual foi criado), um "
2940+
"arquivo ``.pyc`` contendo o código compilado deve ser criado em um "
2941+
"subdiretório ``__pycache__`` do diretório que contém o arquivo ``.py``. O "
2942+
"arquivo ``.pyc`` terá um nome de arquivo que começa com o mesmo nome do "
2943+
"arquivo ``.py`` e termina com ``.pyc``, com um componente intermediário que "
2944+
"depende do binário ``python`` específico que o criou. (Consulte :pep:`3147` "
2945+
"para obter detalhes.)"
29382946

29392947
#: ../../faq/programming.rst:2059
29402948
msgid ""
@@ -2944,6 +2952,11 @@ msgid ""
29442952
"example, if you develop as one user but run as another, such as if you are "
29452953
"testing with a web server."
29462954
msgstr ""
2955+
"Um dos motivos pelos quais um arquivo ``.pyc`` pode não ser criado é um "
2956+
"problema de permissões no diretório que contém o arquivo de origem, o que "
2957+
"significa que o subdiretório ``__pycache__`` não pode ser criado. Isso pode "
2958+
"acontecer, por exemplo, se você desenvolver como um usuário, mas executar "
2959+
"como outro, como se estivesse testando em um servidor web."
29472960

29482961
#: ../../faq/programming.rst:2064
29492962
msgid ""
@@ -2953,6 +2966,11 @@ msgid ""
29532966
"``__pycache__`` subdirectory and write the compiled module to that "
29542967
"subdirectory."
29552968
msgstr ""
2969+
"A menos que a variável de ambiente :envvar:`PYTHONDONTWRITEBYTECODE` esteja "
2970+
"definida, a criação de um arquivo .pyc será automática se você estiver "
2971+
"importando um módulo e o Python tiver a capacidade (permissões, espaço livre "
2972+
"etc.) de criar um subdiretório ``__pycache__`` e gravar o módulo compilado "
2973+
"nesse subdiretório."
29562974

29572975
#: ../../faq/programming.rst:2069
29582976
msgid ""
@@ -2963,26 +2981,41 @@ msgid ""
29632981
"``xyz`` because ``xyz`` is imported, but no ``.pyc`` file will be created "
29642982
"for ``foo`` since ``foo.py`` isn't being imported."
29652983
msgstr ""
2984+
"A execução do Python em um script de nível superior não é considerada uma "
2985+
"importação e nenhum ``.pyc`` será criado. Por exemplo, se você tiver um "
2986+
"módulo de nível superior ``foo.py`` que importa outro módulo ``xyz.py`` , ao "
2987+
"executar ``foo`` (digitando ``python foo.py`` no console do sistema "
2988+
"operacional (SO)), um ``.pyc`` será criado para ``xyz`` porque ``xyz`` é "
2989+
"importado, mas nenhum arquivo ``.pyc`` será criado para ``foo``, pois ``foo."
2990+
"py`` não está sendo importado."
29662991

29672992
#: ../../faq/programming.rst:2076
29682993
msgid ""
29692994
"If you need to create a ``.pyc`` file for ``foo`` -- that is, to create a ``."
29702995
"pyc`` file for a module that is not imported -- you can, using the :mod:"
29712996
"`py_compile` and :mod:`compileall` modules."
29722997
msgstr ""
2998+
"Se você precisar criar um arquivo ``.pyc`` para ``foo``, ou seja, criar um "
2999+
"arquivo ``.pyc`` para um módulo que não é importado, você pode usar os "
3000+
"módulos :mod:`py_compile` e :mod:`compileall`."
29733001

29743002
#: ../../faq/programming.rst:2080
29753003
msgid ""
29763004
"The :mod:`py_compile` module can manually compile any module. One way is to "
29773005
"use the ``compile()`` function in that module interactively::"
29783006
msgstr ""
3007+
"O módulo :mod:`py_compile` pode compilar manualmente qualquer módulo. Uma "
3008+
"maneira é usar interativamente a função ``compile()`` nesse módulo::"
29793009

29803010
#: ../../faq/programming.rst:2086
29813011
msgid ""
29823012
"This will write the ``.pyc`` to a ``__pycache__`` subdirectory in the same "
29833013
"location as ``foo.py`` (or you can override that with the optional parameter "
29843014
"``cfile``)."
29853015
msgstr ""
3016+
"Isso gravará o ``.pyc`` em um subdiretório ``__pycache__`` no mesmo local "
3017+
"que ``foo.py`` (ou você pode substituir isso com o parâmetro opcional "
3018+
"``cfile`` )."
29863019

29873020
#: ../../faq/programming.rst:2090
29883021
msgid ""
@@ -2991,6 +3024,10 @@ msgid ""
29913024
"running ``compileall.py`` and providing the path of a directory containing "
29923025
"Python files to compile::"
29933026
msgstr ""
3027+
"Você também pode compilar automaticamente todos os arquivos em um diretório "
3028+
"ou diretórios usando o módulo :mod:`compileall`. Você pode fazer isso no "
3029+
"console do SO executando ``compileall.py`` e fornecendo o caminho de um "
3030+
"diretório que contenha os arquivos Python a serem compilados::"
29943031

29953032
#: ../../faq/programming.rst:2099
29963033
msgid "How do I find the current module name?"

howto/curses.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# SOME DESCRIPTIVE TITLE.
2-
# Copyright (C) 2001-2024, Python Software Foundation
2+
# Copyright (C) 2001-2025, Python Software Foundation
33
# This file is distributed under the same license as the Python package.
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
@@ -11,15 +11,15 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.11\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2024-08-31 12:03+0000\n"
14+
"POT-Creation-Date: 2025-01-21 22:20+0000\n"
1515
"PO-Revision-Date: 2023-05-24 02:11+0000\n"
1616
"Last-Translator: Rafael Fontenelle <[email protected]>, 2024\n"
1717
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
1818
"teams/5390/pt_BR/)\n"
19+
"Language: pt_BR\n"
1920
"MIME-Version: 1.0\n"
2021
"Content-Type: text/plain; charset=UTF-8\n"
2122
"Content-Transfer-Encoding: 8bit\n"
22-
"Language: pt_BR\n"
2323
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % "
2424
"1000000 == 0 ? 1 : 2;\n"
2525

howto/sorting.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# SOME DESCRIPTIVE TITLE.
2-
# Copyright (C) 2001-2024, Python Software Foundation
2+
# Copyright (C) 2001-2025, Python Software Foundation
33
# This file is distributed under the same license as the Python package.
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
@@ -11,15 +11,15 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.11\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2024-08-31 12:03+0000\n"
14+
"POT-Creation-Date: 2025-01-21 22:20+0000\n"
1515
"PO-Revision-Date: 2023-05-24 02:11+0000\n"
1616
"Last-Translator: Rafael Fontenelle <[email protected]>, 2024\n"
1717
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
1818
"teams/5390/pt_BR/)\n"
19+
"Language: pt_BR\n"
1920
"MIME-Version: 1.0\n"
2021
"Content-Type: text/plain; charset=UTF-8\n"
2122
"Content-Transfer-Encoding: 8bit\n"
22-
"Language: pt_BR\n"
2323
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % "
2424
"1000000 == 0 ? 1 : 2;\n"
2525

howto/unicode.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# SOME DESCRIPTIVE TITLE.
2-
# Copyright (C) 2001-2024, Python Software Foundation
2+
# Copyright (C) 2001-2025, Python Software Foundation
33
# This file is distributed under the same license as the Python package.
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
@@ -11,15 +11,15 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.11\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2024-08-31 12:03+0000\n"
14+
"POT-Creation-Date: 2025-01-21 22:20+0000\n"
1515
"PO-Revision-Date: 2023-05-24 02:11+0000\n"
1616
"Last-Translator: Rafael Fontenelle <[email protected]>, 2024\n"
1717
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
1818
"teams/5390/pt_BR/)\n"
19+
"Language: pt_BR\n"
1920
"MIME-Version: 1.0\n"
2021
"Content-Type: text/plain; charset=UTF-8\n"
2122
"Content-Transfer-Encoding: 8bit\n"
22-
"Language: pt_BR\n"
2323
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % "
2424
"1000000 == 0 ? 1 : 2;\n"
2525

howto/urllib2.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# SOME DESCRIPTIVE TITLE.
2-
# Copyright (C) 2001-2024, Python Software Foundation
2+
# Copyright (C) 2001-2025, Python Software Foundation
33
# This file is distributed under the same license as the Python package.
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
@@ -11,15 +11,15 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.11\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2024-08-31 12:03+0000\n"
14+
"POT-Creation-Date: 2025-01-21 22:20+0000\n"
1515
"PO-Revision-Date: 2023-05-24 02:11+0000\n"
1616
"Last-Translator: Rafael Fontenelle <[email protected]>, 2024\n"
1717
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
1818
"teams/5390/pt_BR/)\n"
19+
"Language: pt_BR\n"
1920
"MIME-Version: 1.0\n"
2021
"Content-Type: text/plain; charset=UTF-8\n"
2122
"Content-Transfer-Encoding: 8bit\n"
22-
"Language: pt_BR\n"
2323
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % "
2424
"1000000 == 0 ? 1 : 2;\n"
2525

library/grp.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# SOME DESCRIPTIVE TITLE.
2-
# Copyright (C) 2001-2024, Python Software Foundation
2+
# Copyright (C) 2001-2025, 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.11\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2024-12-27 15:28+0000\n"
14+
"POT-Creation-Date: 2025-01-21 22:20+0000\n"
1515
"PO-Revision-Date: 2023-05-24 02:16+0000\n"
1616
"Last-Translator: Rafael Fontenelle <[email protected]>, 2024\n"
1717
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"

library/pwd.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# SOME DESCRIPTIVE TITLE.
2-
# Copyright (C) 2001-2024, Python Software Foundation
2+
# Copyright (C) 2001-2025, Python Software Foundation
33
# This file is distributed under the same license as the Python package.
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
@@ -11,15 +11,15 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.11\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2024-08-31 12:03+0000\n"
14+
"POT-Creation-Date: 2025-01-21 22:20+0000\n"
1515
"PO-Revision-Date: 2023-05-24 02:18+0000\n"
1616
"Last-Translator: Rafael Fontenelle <[email protected]>, 2024\n"
1717
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
1818
"teams/5390/pt_BR/)\n"
19+
"Language: pt_BR\n"
1920
"MIME-Version: 1.0\n"
2021
"Content-Type: text/plain; charset=UTF-8\n"
2122
"Content-Transfer-Encoding: 8bit\n"
22-
"Language: pt_BR\n"
2323
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % "
2424
"1000000 == 0 ? 1 : 2;\n"
2525

library/re.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.11\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2025-01-03 15:28+0000\n"
15+
"POT-Creation-Date: 2025-01-21 22:20+0000\n"
1616
"PO-Revision-Date: 2023-05-24 02:19+0000\n"
1717
"Last-Translator: Rafael Fontenelle <[email protected]>, 2025\n"
1818
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
@@ -1633,7 +1633,7 @@ msgstr "A sequência ::"
16331633

16341634
#: ../../library/re.rst:890
16351635
msgid "is equivalent to ::"
1636-
msgstr "é equivalente a ::"
1636+
msgstr "equivale a ::"
16371637

16381638
#: ../../library/re.rst:894
16391639
msgid ""

library/readline.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# SOME DESCRIPTIVE TITLE.
2-
# Copyright (C) 2001-2024, Python Software Foundation
2+
# Copyright (C) 2001-2025, Python Software Foundation
33
# This file is distributed under the same license as the Python package.
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
@@ -11,15 +11,15 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.11\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2024-08-31 12:03+0000\n"
14+
"POT-Creation-Date: 2025-01-21 22:20+0000\n"
1515
"PO-Revision-Date: 2023-05-24 02:19+0000\n"
1616
"Last-Translator: Rafael Fontenelle <[email protected]>, 2024\n"
1717
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
1818
"teams/5390/pt_BR/)\n"
19+
"Language: pt_BR\n"
1920
"MIME-Version: 1.0\n"
2021
"Content-Type: text/plain; charset=UTF-8\n"
2122
"Content-Transfer-Encoding: 8bit\n"
22-
"Language: pt_BR\n"
2323
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % "
2424
"1000000 == 0 ? 1 : 2;\n"
2525

library/socket.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# SOME DESCRIPTIVE TITLE.
2-
# Copyright (C) 2001-2024, Python Software Foundation
2+
# Copyright (C) 2001-2025, Python Software Foundation
33
# This file is distributed under the same license as the Python package.
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
@@ -11,15 +11,15 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.11\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2024-11-22 15:32+0000\n"
14+
"POT-Creation-Date: 2025-01-21 22:20+0000\n"
1515
"PO-Revision-Date: 2023-05-24 02:19+0000\n"
1616
"Last-Translator: Rafael Fontenelle <[email protected]>, 2024\n"
1717
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
1818
"teams/5390/pt_BR/)\n"
19+
"Language: pt_BR\n"
1920
"MIME-Version: 1.0\n"
2021
"Content-Type: text/plain; charset=UTF-8\n"
2122
"Content-Transfer-Encoding: 8bit\n"
22-
"Language: pt_BR\n"
2323
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % "
2424
"1000000 == 0 ? 1 : 2;\n"
2525

library/time.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# SOME DESCRIPTIVE TITLE.
2-
# Copyright (C) 2001-2024, Python Software Foundation
2+
# Copyright (C) 2001-2025, Python Software Foundation
33
# This file is distributed under the same license as the Python package.
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
@@ -11,15 +11,15 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.11\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2024-11-22 15:32+0000\n"
14+
"POT-Creation-Date: 2025-01-21 22:20+0000\n"
1515
"PO-Revision-Date: 2023-05-24 02:20+0000\n"
1616
"Last-Translator: Rafael Fontenelle <[email protected]>, 2024\n"
1717
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
1818
"teams/5390/pt_BR/)\n"
19+
"Language: pt_BR\n"
1920
"MIME-Version: 1.0\n"
2021
"Content-Type: text/plain; charset=UTF-8\n"
2122
"Content-Transfer-Encoding: 8bit\n"
22-
"Language: pt_BR\n"
2323
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % "
2424
"1000000 == 0 ? 1 : 2;\n"
2525

potodo.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,12 @@
5151
- newtypes_tutorial.po 27 / 123 ( 21.0% translated).
5252

5353

54-
# faq (94.07% done)
54+
# faq (94.95% done)
5555

5656
- design.po 128 / 142 ( 90.0% translated).
5757
- extending.po 55 / 58 ( 94.0% translated).
5858
- library.po 136 / 140 ( 97.0% translated).
59-
- programming.po 360 / 393 ( 91.0% translated).
59+
- programming.po 368 / 393 ( 93.0% translated).
6060

6161

6262
# howto (60.86% done)
@@ -285,9 +285,9 @@
285285
- zoneinfo.po 8 / 75 ( 10.0% translated).
286286

287287

288-
# reference (95.58% done)
288+
# reference (97.08% done)
289289

290-
- compound_stmts.po 306 / 389 ( 78.0% translated).
290+
- compound_stmts.po 345 / 389 ( 88.0% translated).
291291
- datamodel.po 783 / 786 ( 99.0% translated).
292292
- executionmodel.po 73 / 75 ( 97.0% translated).
293293
- import.po 192 / 207 ( 92.0% translated).
@@ -329,5 +329,5 @@
329329
- 3.8.po 468 / 469 ( 99.0% translated).
330330

331331

332-
# TOTAL (64.79% done)
332+
# TOTAL (64.87% done)
333333

0 commit comments

Comments
 (0)