Skip to content

Commit 295d2a3

Browse files
author
github-actions
committed
Merge 3.13 into 3.10
1 parent 5e6a4a8 commit 295d2a3

File tree

4 files changed

+22
-18
lines changed

4 files changed

+22
-18
lines changed

howto/descriptor.po

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ msgstr "A nova classe agora registra acesso a *name* e *age*:"
296296

297297
#: ../../howto/descriptor.rst:284
298298
msgid "The two *Person* instances contain only the private names:"
299-
msgstr ""
299+
msgstr "As duas instâncias *Person* contêm apenas os nomes privados:"
300300

301301
#: ../../howto/descriptor.rst:295
302302
msgid "Closing thoughts"
@@ -354,7 +354,7 @@ msgstr ""
354354

355355
#: ../../howto/descriptor.rst:326
356356
msgid "Complete Practical Example"
357-
msgstr ""
357+
msgstr "Exemplo prático completo"
358358

359359
#: ../../howto/descriptor.rst:328
360360
msgid ""
@@ -416,7 +416,7 @@ msgstr ""
416416

417417
#: ../../howto/descriptor.rst:437
418418
msgid "Practical application"
419-
msgstr ""
419+
msgstr "Aplicação prática"
420420

421421
#: ../../howto/descriptor.rst:439
422422
msgid "Here's how the data validators can be used in a real class:"
@@ -454,7 +454,7 @@ msgstr ""
454454

455455
#: ../../howto/descriptor.rst:498
456456
msgid "Definition and introduction"
457-
msgstr ""
457+
msgstr "Definição e introdução"
458458

459459
#: ../../howto/descriptor.rst:500
460460
msgid ""
@@ -487,7 +487,7 @@ msgstr ""
487487

488488
#: ../../howto/descriptor.rst:522
489489
msgid "Descriptor protocol"
490-
msgstr ""
490+
msgstr "Protocolo Descriptor"
491491

492492
#: ../../howto/descriptor.rst:524
493493
msgid "``descr.__get__(self, obj, type=None) -> value``"
@@ -725,7 +725,7 @@ msgstr ""
725725

726726
#: ../../howto/descriptor.rst:848
727727
msgid "ORM example"
728-
msgstr ""
728+
msgstr "Exemplo de ORM"
729729

730730
#: ../../howto/descriptor.rst:850
731731
msgid ""
@@ -817,7 +817,7 @@ msgstr ""
817817

818818
#: ../../howto/descriptor.rst:1117
819819
msgid "Functions and methods"
820-
msgstr ""
820+
msgstr "Funções e métodos"
821821

822822
#: ../../howto/descriptor.rst:1119
823823
msgid ""
@@ -890,7 +890,7 @@ msgstr ""
890890

891891
#: ../../howto/descriptor.rst:1209
892892
msgid "Kinds of methods"
893-
msgstr ""
893+
msgstr "Tipos de métodos"
894894

895895
#: ../../howto/descriptor.rst:1211
896896
msgid ""
@@ -948,11 +948,11 @@ msgstr "f(type(obj), \\*args)"
948948

949949
#: ../../howto/descriptor.rst:1229
950950
msgid "f(cls, \\*args)"
951-
msgstr ""
951+
msgstr "f(cls, \\*args)"
952952

953953
#: ../../howto/descriptor.rst:1234
954954
msgid "Static methods"
955-
msgstr ""
955+
msgstr "Métodos estáticos"
956956

957957
#: ../../howto/descriptor.rst:1236
958958
msgid ""
@@ -995,7 +995,7 @@ msgstr ""
995995

996996
#: ../../howto/descriptor.rst:1310
997997
msgid "Class methods"
998-
msgstr ""
998+
msgstr "Métodos de classe"
999999

10001000
#: ../../howto/descriptor.rst:1312
10011001
msgid ""

library/ctypes.po

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,10 @@ msgid ""
5151
"they actually work. Since some code samples behave differently under Linux, "
5252
"Windows, or macOS, they contain doctest directives in comments."
5353
msgstr ""
54+
"Nota: Os exemplos de código neste tutorial usam :mod:`doctest` para garantir "
55+
"que eles realmente funcionem. Como algumas amostras de código se comportam "
56+
"de maneira diferente no Linux, Windows ou macOS, elas contêm diretrizes de "
57+
"doctest nos comentários."
5458

5559
#: ../../library/ctypes.rst:25
5660
msgid ""
@@ -219,7 +223,7 @@ msgstr ""
219223

220224
#: ../../library/ctypes.rst:211 ../../library/ctypes.rst:2138
221225
msgid "Fundamental data types"
222-
msgstr ""
226+
msgstr "Tipos de dados fundamentais"
223227

224228
#: ../../library/ctypes.rst:213
225229
msgid ":mod:`ctypes` defines a number of primitive C compatible data types:"
@@ -348,15 +352,15 @@ msgstr ":class:`c_longlong`"
348352

349353
#: ../../library/ctypes.rst:240
350354
msgid ":c:expr:`__int64` or :c:expr:`long long`"
351-
msgstr ""
355+
msgstr ":c:expr:`__int64` ou :c:expr:`long long`"
352356

353357
#: ../../library/ctypes.rst:242
354358
msgid ":class:`c_ulonglong`"
355359
msgstr ":class:`c_ulonglong`"
356360

357361
#: ../../library/ctypes.rst:242
358362
msgid ":c:expr:`unsigned __int64` or :c:expr:`unsigned long long`"
359-
msgstr ""
363+
msgstr ":c:expr:`unsigned __int64` ou :c:expr:`unsigned long long`"
360364

361365
#: ../../library/ctypes.rst:245
362366
msgid ":class:`c_size_t`"
@@ -409,7 +413,7 @@ msgstr ":class:`c_char_p`"
409413

410414
#: ../../library/ctypes.rst:256
411415
msgid ":c:expr:`char *` (NUL terminated)"
412-
msgstr ""
416+
msgstr ":c:expr:`char *` (finalizado com NUL)"
413417

414418
#: ../../library/ctypes.rst:256
415419
msgid "bytes object or ``None``"
@@ -421,7 +425,7 @@ msgstr ":class:`c_wchar_p`"
421425

422426
#: ../../library/ctypes.rst:258
423427
msgid ":c:expr:`wchar_t *` (NUL terminated)"
424-
msgstr ""
428+
msgstr ":c:expr:`wchar_t *` (finalizado com NUL)"
425429

426430
#: ../../library/ctypes.rst:258
427431
msgid "string or ``None``"

library/logging.po

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

471471
#: ../../library/logging.rst:257 ../../library/logging.rst:1125
472472
msgid "The *stack_info* parameter was added."
473-
msgstr ""
473+
msgstr "O parâmetro *stack_info* foi adicionado."
474474

475475
#: ../../library/logging.rst:260
476476
msgid "The *exc_info* parameter can now accept exception instances."

library/xmlrpc.client.po

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

685685
#: ../../library/xmlrpc.client.rst:597
686686
msgid "See :ref:`simplexmlrpcserver-example`."
687-
msgstr ""
687+
msgstr "Veja :ref:`simplexmlrpcserver-example`."
688688

689689
#: ../../library/xmlrpc.client.rst:601
690690
msgid "Footnotes"

0 commit comments

Comments
 (0)