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

Skip to content

Commit 6acdf24

Browse files
Update translations
1 parent b103f1b commit 6acdf24

14 files changed

+1040
-764
lines changed

faq/programming.po

Lines changed: 7 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.12\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2025-04-04 14:56+0000\n"
14+
"POT-Creation-Date: 2025-04-11 14:54+0000\n"
1515
"PO-Revision-Date: 2024-05-11 00:32+0000\n"
1616
"Last-Translator: Rafael Fontenelle <[email protected]>, 2025\n"
1717
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
@@ -4007,31 +4007,23 @@ msgstr ""
40074007

40084008
#: ../../faq/programming.rst:1870
40094009
msgid ""
4010-
"1) Assignments create new names but do not change object identity. After "
4011-
"the assignment ``new = old``, it is guaranteed that ``new is old``."
4010+
"Assignments create new names but do not change object identity. After the "
4011+
"assignment ``new = old``, it is guaranteed that ``new is old``."
40124012
msgstr ""
4013-
"1) Atribuições criam novos nomes, mas não alteram a identidade do objeto. "
4014-
"Após a atribuição ``new = old``, é garantido que ``new is old``."
40154013

40164014
#: ../../faq/programming.rst:1873
40174015
msgid ""
4018-
"2) Putting an object in a container that stores object references does not "
4016+
"Putting an object in a container that stores object references does not "
40194017
"change object identity. After the list assignment ``s[0] = x``, it is "
40204018
"guaranteed that ``s[0] is x``."
40214019
msgstr ""
4022-
"2) Colocar um objeto em um contêiner que armazena referências de objetos não "
4023-
"altera a identidade do objeto. Após a lista atribuição ``s[0] = x``, é "
4024-
"garantido que ``s[0] is x``."
40254020

40264021
#: ../../faq/programming.rst:1877
40274022
msgid ""
4028-
"3) If an object is a singleton, it means that only one instance of that "
4029-
"object can exist. After the assignments ``a = None`` and ``b = None``, it "
4030-
"is guaranteed that ``a is b`` because ``None`` is a singleton."
4023+
"If an object is a singleton, it means that only one instance of that object "
4024+
"can exist. After the assignments ``a = None`` and ``b = None``, it is "
4025+
"guaranteed that ``a is b`` because ``None`` is a singleton."
40314026
msgstr ""
4032-
"3) Se um objeto for um Singleton, isso significa que só pode existir uma "
4033-
"instância desse objeto. Depois de atribuição ``a = None`` e ``b = None``, é "
4034-
"garantido que ``a is b`` porque ``None`` é um Singleton."
40354027

40364028
#: ../../faq/programming.rst:1881
40374029
msgid ""

0 commit comments

Comments
 (0)