Skip to content

Commit bbe4f99

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent e811b5d commit bbe4f99

File tree

21 files changed

+138
-211
lines changed

21 files changed

+138
-211
lines changed

c-api/abstract.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.14\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2026-01-01 14:14+0000\n"
15+
"POT-Creation-Date: 2026-01-23 14:20+0000\n"
1616
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1717
"Last-Translator: Hengky Kurniawan, 2025\n"
1818
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"

c-api/conversion.po

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.14\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-01-03 14:14+0000\n"
14+
"POT-Creation-Date: 2026-01-23 14:20+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"
@@ -190,9 +190,22 @@ msgstr ""
190190

191191
msgid ""
192192
"If *ptype* is non-``NULL``, then the value it points to will be set to one "
193-
"of ``Py_DTST_FINITE``, ``Py_DTST_INFINITE``, or ``Py_DTST_NAN``, signifying "
194-
"that *val* is a finite number, an infinite number, or not a number, "
195-
"respectively."
193+
"of the following constants depending on the type of *val*:"
194+
msgstr ""
195+
196+
msgid "*\\*ptype*"
197+
msgstr ""
198+
199+
msgid "type of *val*"
200+
msgstr ""
201+
202+
msgid "finite number"
203+
msgstr ""
204+
205+
msgid "infinite number"
206+
msgstr ""
207+
208+
msgid "not a number"
196209
msgstr ""
197210

198211
msgid ""

c-api/memory.po

Lines changed: 26 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.14\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2026-01-03 14:14+0000\n"
15+
"POT-Creation-Date: 2026-01-23 14:20+0000\n"
1616
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1717
"Last-Translator: Hengky Kurniawan, 2025\n"
1818
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"
@@ -325,30 +325,40 @@ msgstr ""
325325
msgid "Same as :c:func:`PyMem_Free`."
326326
msgstr "Sama seperti :c:func:`PyMem_Free`."
327327

328+
msgid "Deprecated aliases"
329+
msgstr ""
330+
328331
msgid ""
329-
"In addition, the following macro sets are provided for calling the Python "
330-
"memory allocator directly, without involving the C API functions listed "
331-
"above. However, note that their use does not preserve binary compatibility "
332-
"across Python versions and is therefore deprecated in extension modules."
332+
"These are :term:`soft deprecated` aliases to existing functions and macros. "
333+
"They exist solely for backwards compatibility."
334+
msgstr ""
335+
336+
msgid "Deprecated alias"
337+
msgstr ""
338+
339+
msgid "Corresponding function or macro"
333340
msgstr ""
334341

335-
msgid "``PyMem_MALLOC(size)``"
336-
msgstr "``PyMem_MALLOC(size)``"
342+
msgid ":c:func:`PyMem_Malloc`"
343+
msgstr ""
337344

338-
msgid "``PyMem_NEW(type, size)``"
339-
msgstr "``PyMem_NEW(type, size)``"
345+
msgid ":c:macro:`PyMem_New`"
346+
msgstr ""
340347

341-
msgid "``PyMem_REALLOC(ptr, size)``"
342-
msgstr "``PyMem_REALLOC(ptr, size)``"
348+
msgid ":c:func:`PyMem_Realloc`"
349+
msgstr ":c:func:`PyMem_Realloc`"
343350

344-
msgid "``PyMem_RESIZE(ptr, type, size)``"
351+
msgid ":c:macro:`PyMem_Resize`"
345352
msgstr ""
346353

347-
msgid "``PyMem_FREE(ptr)``"
348-
msgstr "``PyMem_FREE(ptr)``"
354+
msgid ":c:func:`PyMem_Free`"
355+
msgstr ":c:func:`PyMem_Free`"
349356

350-
msgid "``PyMem_DEL(ptr)``"
351-
msgstr "``PyMem_DEL(ptr)``"
357+
msgid ""
358+
"The macros are now aliases of the corresponding functions and macros. "
359+
"Previously, their behavior was the same, but their use did not necessarily "
360+
"preserve binary compatibility across Python versions."
361+
msgstr ""
352362

353363
msgid "Object allocators"
354364
msgstr ""
@@ -591,15 +601,9 @@ msgstr ":c:func:`PyMem_RawFree`"
591601
msgid ":c:func:`PyMem_Malloc`,"
592602
msgstr ":c:func:`PyMem_Malloc`,"
593603

594-
msgid ":c:func:`PyMem_Realloc`"
595-
msgstr ":c:func:`PyMem_Realloc`"
596-
597604
msgid ":c:func:`PyMem_Calloc`"
598605
msgstr ":c:func:`PyMem_Calloc`"
599606

600-
msgid ":c:func:`PyMem_Free`"
601-
msgstr ":c:func:`PyMem_Free`"
602-
603607
msgid ":c:func:`PyObject_Free`"
604608
msgstr ":c:func:`PyObject_Free`"
605609

c-api/type.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.14\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-01-01 14:14+0000\n"
14+
"POT-Creation-Date: 2026-01-23 14:20+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"

howto/remote_debugging.po

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.14\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-01-15 14:20+0000\n"
14+
"POT-Creation-Date: 2026-01-23 14:20+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"
@@ -35,6 +35,23 @@ msgid ""
3535
"process."
3636
msgstr ""
3737

38+
msgid "Disabling remote debugging"
39+
msgstr ""
40+
41+
msgid "To disable remote debugging support, use any of the following:"
42+
msgstr ""
43+
44+
msgid ""
45+
"Set the :envvar:`PYTHON_DISABLE_REMOTE_DEBUG` environment variable to ``1`` "
46+
"before starting the interpreter."
47+
msgstr ""
48+
49+
msgid "Use the :option:`-X disable_remote_debug` command-line option."
50+
msgstr ""
51+
52+
msgid "Compile Python with the :option:`--without-remote-debug` build flag."
53+
msgstr ""
54+
3855
msgid "Permission requirements"
3956
msgstr ""
4057

library/builtins.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.14\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2026-01-01 14:14+0000\n"
15+
"POT-Creation-Date: 2026-01-23 14:20+0000\n"
1616
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1717
"Last-Translator: Hengky Kurniawan, 2025\n"
1818
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"

library/crypt.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.14\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2026-01-01 14:14+0000\n"
11+
"POT-Creation-Date: 2026-01-23 14:20+0000\n"
1212
"PO-Revision-Date: 2025-09-16 00:01+0000\n"
1313
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"
1414
"id/)\n"

library/http.cookies.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.14\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-01-15 14:20+0000\n"
14+
"POT-Creation-Date: 2026-01-23 14:20+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:01+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"
@@ -285,9 +285,9 @@ msgid ""
285285
"Set-Cookie: chips=ahoy\n"
286286
"Set-Cookie: vienna=finger\n"
287287
">>> C = cookies.SimpleCookie()\n"
288-
">>> C.load('keebler=\"E=everybody; L=\\\\\"Loves\\\\\"; fudge=\\\\012;\";')\n"
288+
">>> C.load('keebler=\"E=everybody; L=\\\\\"Loves\\\\\"; fudge=;\";')\n"
289289
">>> print(C)\n"
290-
"Set-Cookie: keebler=\"E=everybody; L=\\\"Loves\\\"; fudge=\\012;\"\n"
290+
"Set-Cookie: keebler=\"E=everybody; L=\\\"Loves\\\"; fudge=;\"\n"
291291
">>> C = cookies.SimpleCookie()\n"
292292
">>> C[\"oreo\"] = \"doublestuff\"\n"
293293
">>> C[\"oreo\"][\"path\"] = \"/\"\n"

library/importlib.po

Lines changed: 1 addition & 141 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.14\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-01-05 14:19+0000\n"
14+
"POT-Creation-Date: 2026-01-23 14:20+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:01+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"
@@ -705,146 +705,6 @@ msgid ""
705705
"``__init__``."
706706
msgstr ""
707707

708-
msgid ""
709-
"An :term:`abstract base class` to provide the ability to read *resources*."
710-
msgstr ""
711-
712-
msgid ""
713-
"From the perspective of this ABC, a *resource* is a binary artifact that is "
714-
"shipped within a package. Typically this is something like a data file that "
715-
"lives next to the ``__init__.py`` file of the package. The purpose of this "
716-
"class is to help abstract out the accessing of such data files so that it "
717-
"does not matter if the package and its data file(s) are stored e.g. in a zip "
718-
"file versus on the file system."
719-
msgstr ""
720-
721-
msgid ""
722-
"For any of methods of this class, a *resource* argument is expected to be a :"
723-
"term:`path-like object` which represents conceptually just a file name. This "
724-
"means that no subdirectory paths should be included in the *resource* "
725-
"argument. This is because the location of the package the reader is for, "
726-
"acts as the \"directory\". Hence the metaphor for directories and file names "
727-
"is packages and resources, respectively. This is also why instances of this "
728-
"class are expected to directly correlate to a specific package (instead of "
729-
"potentially representing multiple packages or a module)."
730-
msgstr ""
731-
732-
msgid ""
733-
"Loaders that wish to support resource reading are expected to provide a "
734-
"method called ``get_resource_reader(fullname)`` which returns an object "
735-
"implementing this ABC's interface. If the module specified by fullname is "
736-
"not a package, this method should return :const:`None`. An object compatible "
737-
"with this ABC should only be returned when the specified module is a package."
738-
msgstr ""
739-
740-
msgid "Use :class:`importlib.resources.abc.TraversableResources` instead."
741-
msgstr ""
742-
743-
msgid ""
744-
"Returns an opened, :term:`file-like object` for binary reading of the "
745-
"*resource*."
746-
msgstr ""
747-
748-
msgid "If the resource cannot be found, :exc:`FileNotFoundError` is raised."
749-
msgstr ""
750-
751-
msgid "Returns the file system path to the *resource*."
752-
msgstr ""
753-
754-
msgid ""
755-
"If the resource does not concretely exist on the file system, raise :exc:"
756-
"`FileNotFoundError`."
757-
msgstr ""
758-
759-
msgid ""
760-
"Returns ``True`` if the named *name* is considered a resource. :exc:"
761-
"`FileNotFoundError` is raised if *name* does not exist."
762-
msgstr ""
763-
764-
msgid ""
765-
"Returns an :term:`iterable` of strings over the contents of the package. Do "
766-
"note that it is not required that all names returned by the iterator be "
767-
"actual resources, e.g. it is acceptable to return names for which :meth:"
768-
"`is_resource` would be false."
769-
msgstr ""
770-
771-
msgid ""
772-
"Allowing non-resource names to be returned is to allow for situations where "
773-
"how a package and its resources are stored are known a priori and the non-"
774-
"resource names would be useful. For instance, returning subdirectory names "
775-
"is allowed so that when it is known that the package and resources are "
776-
"stored on the file system then those subdirectory names can be used directly."
777-
msgstr ""
778-
779-
msgid "The abstract method returns an iterable of no items."
780-
msgstr ""
781-
782-
msgid ""
783-
"An object with a subset of :class:`pathlib.Path` methods suitable for "
784-
"traversing directories and opening files."
785-
msgstr ""
786-
787-
msgid ""
788-
"For a representation of the object on the file-system, use :meth:`importlib."
789-
"resources.as_file`."
790-
msgstr ""
791-
792-
msgid "Use :class:`importlib.resources.abc.Traversable` instead."
793-
msgstr ""
794-
795-
msgid "Abstract. The base name of this object without any parent references."
796-
msgstr ""
797-
798-
msgid "Yield ``Traversable`` objects in ``self``."
799-
msgstr ""
800-
801-
msgid "Return ``True`` if ``self`` is a directory."
802-
msgstr ""
803-
804-
msgid "Return ``True`` if ``self`` is a file."
805-
msgstr ""
806-
807-
msgid "Return Traversable child in ``self``."
808-
msgstr ""
809-
810-
msgid "Return ``Traversable`` child in ``self``."
811-
msgstr ""
812-
813-
msgid ""
814-
"*mode* may be 'r' or 'rb' to open as text or binary. Return a handle "
815-
"suitable for reading (same as :attr:`pathlib.Path.open`)."
816-
msgstr ""
817-
818-
msgid ""
819-
"When opening as text, accepts encoding parameters such as those accepted by :"
820-
"class:`io.TextIOWrapper`."
821-
msgstr ""
822-
823-
msgid "Read contents of ``self`` as bytes."
824-
msgstr ""
825-
826-
msgid "Read contents of ``self`` as text."
827-
msgstr ""
828-
829-
msgid ""
830-
"An abstract base class for resource readers capable of serving the :meth:"
831-
"`importlib.resources.files` interface. Subclasses :class:`importlib."
832-
"resources.abc.ResourceReader` and provides concrete implementations of the :"
833-
"class:`importlib.resources.abc.ResourceReader`'s abstract methods. "
834-
"Therefore, any loader supplying :class:`importlib.abc.TraversableResources` "
835-
"also supplies ResourceReader."
836-
msgstr ""
837-
838-
msgid ""
839-
"Loaders that wish to support resource reading are expected to implement this "
840-
"interface."
841-
msgstr ""
842-
843-
msgid ""
844-
"Returns a :class:`importlib.resources.abc.Traversable` object for the loaded "
845-
"package."
846-
msgstr ""
847-
848708
msgid ":mod:`importlib.machinery` -- Importers and path hooks"
849709
msgstr ""
850710

library/inspect.po

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.14\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-01-17 14:14+0000\n"
14+
"POT-Creation-Date: 2026-01-23 14:20+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:01+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"
@@ -676,6 +676,11 @@ msgid ""
676676
"wrapped function is an :term:`asynchronous generator` function."
677677
msgstr ""
678678

679+
msgid ""
680+
"Functions wrapped in :func:`functools.partialmethod` now return ``True`` if "
681+
"the wrapped function is a :term:`asynchronous generator` function."
682+
msgstr ""
683+
679684
msgid ""
680685
"Return ``True`` if the object is an :term:`asynchronous generator iterator` "
681686
"created by an :term:`asynchronous generator` function."

0 commit comments

Comments
 (0)