Skip to content

Commit 110954a

Browse files
Update translations
1 parent ae986d9 commit 110954a

File tree

22 files changed

+1049
-230
lines changed

22 files changed

+1049
-230
lines changed

extending/windows.po

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
66
# Translators:
7-
# Rafael Fontenelle <rffontenelle@gmail.com>, 2022
7+
# Rafael Fontenelle <rffontenelle@gmail.com>, 2024
88
#
99
#, fuzzy
1010
msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.10\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2024-08-31 12:42+0000\n"
14+
"POT-Creation-Date: 2024-11-15 16:02+0000\n"
1515
"PO-Revision-Date: 2022-11-05 17:21+0000\n"
16-
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2022\n"
16+
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
1717
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
1818
"teams/5390/pt_BR/)\n"
1919
"MIME-Version: 1.0\n"
@@ -195,10 +195,10 @@ msgid ""
195195
msgstr ""
196196
"Suponha que você esteja construindo dois módulos de carregamento dinâmico, B "
197197
"e C, que devem compartilhar outro bloco de código A. No Unix, você *não* "
198-
"passaria :file:`A.a` ao vinculador para :file:`B.so` e :file:`C.so`; isso "
199-
"faria com que fosse incluído duas vezes, para que B e C tivessem sua própria "
198+
"passaria :file:`A.a` ao ligador para :file:`B.so` e :file:`C.so`; isso faria "
199+
"com que fosse incluído duas vezes, para que B e C tivessem sua própria "
200200
"cópia. No Windows, a construção :file:`A.dll` também construirá :file:`A."
201-
"lib`. Você *passa* :file:`A.lib` ao vinculador para B e C. :file:`A.lib` não "
201+
"lib`. Você *passa* :file:`A.lib` ao ligador para B e C. :file:`A.lib` não "
202202
"contém código; apenas contém informações que serão usadas em tempo de "
203203
"execução para acessar o código de A."
204204

@@ -234,8 +234,8 @@ msgid ""
234234
"spam), you could use these commands::"
235235
msgstr ""
236236
"Ao criar DLLs no Windows, você deve passar :file:`pythonXY.lib` para o "
237-
"vinculador. Para construir duas DLLs, spam e ni (que usa funções C "
238-
"encontradas em spam), você pode usar estes comandos::"
237+
"ligador. Para construir duas DLLs, spam e ni (que usa funções C encontradas "
238+
"em spam), você pode usar estes comandos::"
239239

240240
#: ../../extending/windows.rst:118
241241
msgid ""

faq/extending.po

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.10\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2024-11-12 10:23+0000\n"
14+
"POT-Creation-Date: 2024-11-15 16:02+0000\n"
1515
"PO-Revision-Date: 2022-11-05 17:21+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
1717
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
@@ -443,22 +443,33 @@ msgid ""
443443
"it using g++ (change LINKCC in the Python Modules Makefile), and link your "
444444
"extension module using g++ (e.g., ``g++ -shared -o mymodule.so mymodule.o``)."
445445
msgstr ""
446+
"Para carregar dinamicamente módulos de extensão feitos com g++, você precisa "
447+
"recompilar o Python, usando o g++ como ligador (mude a constante LINKCC no "
448+
"Makefile dos módulos de extensão do Python), e use o g++ também como ligador "
449+
"do seu módulo (por exemplo, ``g++ -shared -o mymodule.so mymodule.o``)."
446450

447451
#: ../../faq/extending.rst:284
448452
msgid ""
449453
"Can I create an object class with some methods implemented in C and others "
450454
"in Python (e.g. through inheritance)?"
451455
msgstr ""
456+
"Posso criar uma classe de objetos com alguns métodos implementados em C e "
457+
"outros em Python (por exemplo, via herança)?"
452458

453459
#: ../../faq/extending.rst:286
454460
msgid ""
455461
"Yes, you can inherit from built-in classes such as :class:`int`, :class:"
456462
"`list`, :class:`dict`, etc."
457463
msgstr ""
464+
"Sim, você pode herdar de classes embutidas como :class:`int`, :class:"
465+
"`list`, :class:`dict` etc."
458466

459467
#: ../../faq/extending.rst:289
460468
msgid ""
461469
"The Boost Python Library (BPL, https://www.boost.org/libs/python/doc/index."
462470
"html) provides a way of doing this from C++ (i.e. you can inherit from an "
463471
"extension class written in C++ using the BPL)."
464472
msgstr ""
473+
"A Boost Python Library (BPL, https://www.boost.org/libs/python/doc/index."
474+
"html) fornece uma forma de fazer isso a partir do C++ (quer dizer, você "
475+
"consegue herdar de uma classe de extensão escrita em C++ usando a BPL)."

faq/windows.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.10\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2024-08-23 16:12+0000\n"
14+
"POT-Creation-Date: 2024-11-15 16:02+0000\n"
1515
"PO-Revision-Date: 2022-11-05 17:21+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
1717
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
@@ -321,7 +321,7 @@ msgstr ""
321321
"enquanto a vinculação em tempo de execução significa vincular a :file:"
322322
"`python{NN}.dll`. (Nota geral: :file:`python{NN}.lib` é a chamada \"import "
323323
"lib\" correspondente a :file:`python{NN}.dll`. Apenas define símbolos para o "
324-
"vinculador.)"
324+
"ligador.)"
325325

326326
#: ../../faq/windows.rst:182
327327
msgid ""

0 commit comments

Comments
 (0)