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

Skip to content

Commit fa1b207

Browse files
Update translations
1 parent f6baa76 commit fa1b207

File tree

3 files changed

+26
-9
lines changed

3 files changed

+26
-9
lines changed

faq/programming.po

Lines changed: 22 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
# Claudio Rogerio Carvalho Filho <[email protected]>, 2018
99
# Marco Rougeth <[email protected]>, 2019
1010
# Leonardo Mendes, 2021
11-
# Adorilson Bezerra <[email protected]>, 2025
1211
# Rafael Fontenelle <[email protected]>, 2025
12+
# Adorilson Bezerra <[email protected]>, 2025
1313
#
1414
#, fuzzy
1515
msgid ""
@@ -18,7 +18,7 @@ msgstr ""
1818
"Report-Msgid-Bugs-To: \n"
1919
"POT-Creation-Date: 2025-02-07 16:40+0000\n"
2020
"PO-Revision-Date: 2017-02-16 17:43+0000\n"
21-
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2025\n"
21+
"Last-Translator: Adorilson Bezerra <adorilson@gmail.com>, 2025\n"
2222
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
2323
"teams/5390/pt_BR/)\n"
2424
"Language: pt_BR\n"
@@ -2814,7 +2814,7 @@ msgstr ""
28142814

28152815
#: ../../faq/programming.rst:1971
28162816
msgid "How can I have modules that mutually import each other?"
2817-
msgstr ""
2817+
msgstr "Como posso ter módulos que se importam mutuamente?"
28182818

28192819
#: ../../faq/programming.rst:1973
28202820
msgid "Suppose you have the following modules:"
@@ -2870,16 +2870,21 @@ msgid ""
28702870
"The last step fails, because Python isn't done with interpreting ``foo`` yet "
28712871
"and the global symbol dictionary for ``foo`` is still empty."
28722872
msgstr ""
2873+
"A última etapa falha, pois Python ainda não terminou de interpretar ``foo`` "
2874+
"e o dicionário de símbolos global para ``foo`` ainda está vazio."
28732875

28742876
#: ../../faq/programming.rst:1999
28752877
msgid ""
28762878
"The same thing happens when you use ``import foo``, and then try to access "
28772879
"``foo.foo_var`` in global code."
28782880
msgstr ""
2881+
"O mesmo acontece quando você usa ``import foo`` e, em seguida, tenta acessar "
2882+
"``foo.foo_var`` no código global."
28792883

28802884
#: ../../faq/programming.rst:2002
28812885
msgid "There are (at least) three possible workarounds for this problem."
28822886
msgstr ""
2887+
"Há (pelo menos) três possíveis soluções alternativas para esse problema."
28832888

28842889
#: ../../faq/programming.rst:2004
28852890
msgid ""
@@ -2889,21 +2894,29 @@ msgid ""
28892894
"only. This means everything from an imported module is referenced as "
28902895
"``<module>.<name>``."
28912896
msgstr ""
2897+
"Guido van Rossum recomenda evitar todos os usos de ``from <module> import ..."
2898+
"`` e colocar todo o código dentro de funções. As inicializações de "
2899+
"variáveis globais e variáveis de classe devem usar apenas constantes ou "
2900+
"funções embutidas. Isso significa que tudo de um módulo importado é "
2901+
"referenciado como ``<module>.<name>``."
28922902

28932903
#: ../../faq/programming.rst:2009
28942904
msgid ""
28952905
"Jim Roskind suggests performing steps in the following order in each module:"
28962906
msgstr ""
2907+
"Jim Roskind sugere a execução das etapas na seguinte ordem em cada módulo:"
28972908

28982909
#: ../../faq/programming.rst:2011
28992910
msgid ""
29002911
"exports (globals, functions, and classes that don't need imported base "
29012912
"classes)"
29022913
msgstr ""
2914+
"exportações (globais, função e classes que não precisam de classes base "
2915+
"importadas)"
29032916

29042917
#: ../../faq/programming.rst:2013
29052918
msgid "``import`` statements"
2906-
msgstr "Declaração ``import``"
2919+
msgstr "instruções ``import``"
29072920

29082921
#: ../../faq/programming.rst:2014
29092922
msgid ""
@@ -2916,16 +2929,20 @@ msgid ""
29162929
"Van Rossum doesn't like this approach much because the imports appear in a "
29172930
"strange place, but it does work."
29182931
msgstr ""
2932+
"Van Rossum não gosta muito dessa abordagem porque a importação aparece em um "
2933+
"lugar estranho, mas ela funciona."
29192934

29202935
#: ../../faq/programming.rst:2019
29212936
msgid ""
29222937
"Matthias Urlichs recommends restructuring your code so that the recursive "
29232938
"import is not necessary in the first place."
29242939
msgstr ""
2940+
"Matthias Urlichs recomenda reestruturar seu código para que importação "
2941+
"recursiva não seja necessária em primeiro lugar."
29252942

29262943
#: ../../faq/programming.rst:2022
29272944
msgid "These solutions are not mutually exclusive."
2928-
msgstr "Essas soluções não são mutualmente exclusivas."
2945+
msgstr "Essas soluções não são mutuamente exclusivas."
29292946

29302947
#: ../../faq/programming.rst:2026
29312948
msgid "__import__('x.y.z') returns <module 'x'>; how do I get z?"

potodo.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,12 @@
4444
- newtypes_tutorial.po 28 / 123 ( 22.0% translated).
4545

4646

47-
# faq (91.94% done)
47+
# faq (92.96% done)
4848

4949
- design.po 123 / 141 ( 87.0% translated).
5050
- extending.po 50 / 58 ( 86.0% translated).
5151
- library.po 130 / 140 ( 92.0% translated).
52-
- programming.po 337 / 372 ( 90.0% translated).
52+
- programming.po 346 / 372 ( 93.0% translated).
5353

5454

5555
# howto (53.99% done)
@@ -302,5 +302,5 @@
302302
- 3.9.po 382 / 386 ( 98.0% translated).
303303

304304

305-
# TOTAL (62.87% done)
305+
# TOTAL (62.88% done)
306306

stats.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"completion": "62.87%", "translated": 31121, "entries": 49504, "updated_at": "2025-02-11T00:25:27+00:00Z"}
1+
{"completion": "62.88%", "translated": 31130, "entries": 49504, "updated_at": "2025-02-12T00:25:47+00:00Z"}

0 commit comments

Comments
 (0)