Skip to content

Commit ff4acaa

Browse files
Update translation
Co-Authored-By: python-doc bot
1 parent 8c0f3fb commit ff4acaa

14 files changed

Lines changed: 17748 additions & 17294 deletions

c-api/extension-modules.po

Lines changed: 96 additions & 57 deletions
Large diffs are not rendered by default.

c-api/import.po

Lines changed: 28 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.15\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2026-06-09 16:27+0000\n"
15+
"POT-Creation-Date: 2026-06-25 16:18+0000\n"
1616
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1717
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2025\n"
1818
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
@@ -457,7 +457,14 @@ msgstr ""
457457
msgid "Initialization function for a module built into the interpreter."
458458
msgstr ""
459459

460-
#: ../../c-api/import.rst:310
460+
#: ../../c-api/import.rst:307
461+
msgid ""
462+
"Note that the inittab uses \"``PyInit``\" :ref:`initialization functions "
463+
"<extension-pyinit>`; there is currently no way to include "
464+
"\"``PyModExport_``\" :ref:`export hooks <extension-export-hook>`."
465+
msgstr ""
466+
467+
#: ../../c-api/import.rst:315
461468
msgid ""
462469
"Add a collection of modules to the table of built-in modules. The *newtab* "
463470
"array must end with a sentinel entry which contains ``NULL`` for the :c:"
@@ -468,7 +475,7 @@ msgid ""
468475
"before :c:func:`Py_Initialize`."
469476
msgstr ""
470477

471-
#: ../../c-api/import.rst:317
478+
#: ../../c-api/import.rst:322
472479
msgid ""
473480
"If Python is initialized multiple times, :c:func:`PyImport_AppendInittab` "
474481
"or :c:func:`PyImport_ExtendInittab` must be called before each Python "
@@ -478,50 +485,50 @@ msgstr ""
478485
"c:func:`PyImport_ExtendInittab` devem ser chamados antes de cada "
479486
"inicialização do Python."
480487

481-
#: ../../c-api/import.rst:324
488+
#: ../../c-api/import.rst:329
482489
msgid ""
483490
"The table of built-in modules used by Python initialization. Do not use this "
484491
"directly; use :c:func:`PyImport_AppendInittab` and :c:func:"
485492
"`PyImport_ExtendInittab` instead."
486493
msgstr ""
487494

488-
#: ../../c-api/import.rst:331
495+
#: ../../c-api/import.rst:336
489496
msgid "Import the module *mod_name* and get its attribute *attr_name*."
490497
msgstr ""
491498

492-
#: ../../c-api/import.rst:333
499+
#: ../../c-api/import.rst:338
493500
msgid "Names must be Python :class:`str` objects."
494501
msgstr ""
495502

496-
#: ../../c-api/import.rst:335
503+
#: ../../c-api/import.rst:340
497504
msgid ""
498505
"Helper function combining :c:func:`PyImport_Import` and :c:func:"
499506
"`PyObject_GetAttr`. For example, it can raise :exc:`ImportError` if the "
500507
"module is not found, and :exc:`AttributeError` if the attribute doesn't "
501508
"exist."
502509
msgstr ""
503510

504-
#: ../../c-api/import.rst:344 ../../c-api/import.rst:364
511+
#: ../../c-api/import.rst:349 ../../c-api/import.rst:369
505512
msgid ""
506513
"Similar to :c:func:`PyImport_ImportModuleAttr`, but names are UTF-8 encoded "
507514
"strings instead of Python :class:`str` objects."
508515
msgstr ""
509516

510-
#: ../../c-api/import.rst:351
517+
#: ../../c-api/import.rst:356
511518
msgid "Gets the current lazy imports mode."
512519
msgstr ""
513520

514-
#: ../../c-api/import.rst:357
521+
#: ../../c-api/import.rst:362
515522
msgid ""
516523
"Return a :term:`strong reference` to the current lazy imports filter, or "
517524
"``NULL`` if none exists. This function always succeeds."
518525
msgstr ""
519526

520-
#: ../../c-api/import.rst:367
527+
#: ../../c-api/import.rst:372
521528
msgid "This function always returns ``0``."
522529
msgstr ""
523530

524-
#: ../../c-api/import.rst:373
531+
#: ../../c-api/import.rst:378
525532
msgid ""
526533
"Sets the current lazy imports filter. The *filter* should be a callable that "
527534
"will receive ``(importing_module_name, imported_module_name, [fromlist])`` "
@@ -531,48 +538,48 @@ msgid ""
531538
"lazy and ``False`` otherwise."
532539
msgstr ""
533540

534-
#: ../../c-api/import.rst:380
541+
#: ../../c-api/import.rst:385
535542
msgid "Return ``0`` on success and ``-1`` with an exception set otherwise."
536543
msgstr ""
537544

538-
#: ../../c-api/import.rst:386
545+
#: ../../c-api/import.rst:391
539546
msgid "Enumeration of possible lazy import modes."
540547
msgstr ""
541548

542-
#: ../../c-api/import.rst:390
549+
#: ../../c-api/import.rst:395
543550
msgid "Respect the ``lazy`` keyword in source code. This is the default mode."
544551
msgstr ""
545552

546-
#: ../../c-api/import.rst:394
553+
#: ../../c-api/import.rst:399
547554
msgid "Make all imports lazy by default."
548555
msgstr ""
549556

550-
#: ../../c-api/import.rst:400
557+
#: ../../c-api/import.rst:405
551558
msgid ""
552559
"This function is a building block that enables embedders to implement the :"
553560
"py:meth:`~importlib.abc.Loader.create_module` step of custom static "
554561
"extension importers (e.g. of statically-linked extensions)."
555562
msgstr ""
556563

557-
#: ../../c-api/import.rst:404
564+
#: ../../c-api/import.rst:409
558565
msgid "*spec* must be a :class:`~importlib.machinery.ModuleSpec` object."
559566
msgstr ""
560567

561-
#: ../../c-api/import.rst:406
568+
#: ../../c-api/import.rst:411
562569
msgid ""
563570
"*initfunc* must be an :ref:`initialization function <extension-export-"
564571
"hook>`, the same as for :c:func:`PyImport_AppendInittab`."
565572
msgstr ""
566573

567-
#: ../../c-api/import.rst:409
574+
#: ../../c-api/import.rst:414
568575
msgid ""
569576
"On success, create and return a module object. This module will not be "
570577
"initialized; call :c:func:`PyModule_Exec` to initialize it. (Custom "
571578
"importers should do this in their :py:meth:`~importlib.abc.Loader."
572579
"exec_module` method.)"
573580
msgstr ""
574581

575-
#: ../../c-api/import.rst:415
582+
#: ../../c-api/import.rst:420
576583
msgid "On error, return NULL with an exception set."
577584
msgstr ""
578585

deprecations/index.po

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.15\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2026-06-23 16:23+0000\n"
15+
"POT-Creation-Date: 2026-06-25 16:18+0000\n"
1616
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1717
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2026\n"
1818
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
@@ -392,6 +392,19 @@ msgstr ""
392392
":class:`typing.ByteString`, obsoleto desde o Python 3.9, está programado "
393393
"para ser removido no Python 3.17."
394394

395+
#: ../../deprecations/pending-removal-in-3.17.rst:72
396+
msgid ":mod:`tkinter`:"
397+
msgstr ""
398+
399+
#: ../../deprecations/pending-removal-in-3.17.rst:74
400+
msgid ""
401+
"The :class:`!tkinter.Variable` methods :meth:`!trace_variable`, :meth:`!"
402+
"trace` (an alias of :meth:`!trace_variable`), :meth:`!trace_vdelete` and :"
403+
"meth:`!trace_vinfo`, deprecated since Python 3.14, are scheduled for removal "
404+
"in Python 3.17. Use :meth:`!trace_add`, :meth:`!trace_remove` and :meth:`!"
405+
"trace_info` instead. (Contributed by Serhiy Storchaka in :gh:`120220`.)"
406+
msgstr ""
407+
395408
#: ../../deprecations/c-api-pending-removal-in-3.18.rst:2
396409
#: ../../deprecations/pending-removal-in-3.18.rst:2
397410
msgid "Pending removal in Python 3.18"

deprecations/pending-removal-in-3.17.po

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.15\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2026-05-08 18:34+0000\n"
15+
"POT-Creation-Date: 2026-06-25 16:18+0000\n"
1616
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1717
"Last-Translator: python-doc bot, 2026\n"
1818
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
@@ -142,3 +142,16 @@ msgid ""
142142
msgstr ""
143143
":class:`typing.ByteString`, obsoleto desde o Python 3.9, está programado "
144144
"para ser removido no Python 3.17."
145+
146+
#: ../../deprecations/pending-removal-in-3.17.rst:72
147+
msgid ":mod:`tkinter`:"
148+
msgstr ""
149+
150+
#: ../../deprecations/pending-removal-in-3.17.rst:74
151+
msgid ""
152+
"The :class:`!tkinter.Variable` methods :meth:`!trace_variable`, :meth:`!"
153+
"trace` (an alias of :meth:`!trace_variable`), :meth:`!trace_vdelete` and :"
154+
"meth:`!trace_vinfo`, deprecated since Python 3.14, are scheduled for removal "
155+
"in Python 3.17. Use :meth:`!trace_add`, :meth:`!trace_remove` and :meth:`!"
156+
"trace_info` instead. (Contributed by Serhiy Storchaka in :gh:`120220`.)"
157+
msgstr ""

0 commit comments

Comments
 (0)