Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitb79cfe9

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent12cdb8c commitb79cfe9

File tree

8 files changed

+127
-16
lines changed

8 files changed

+127
-16
lines changed

‎c-api/datetime.po‎

Lines changed: 50 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:2025-11-05 14:15+0000\n"
14+
"POT-Creation-Date:2025-11-21 14:14+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/"
@@ -29,12 +29,45 @@ msgid ""
2929
"Various date and time objects are supplied by the :mod:`datetime` module. "
3030
"Before using any of these functions, the header file :file:`datetime.h` must "
3131
"be included in your source (note that this is not included by :file:`Python."
32-
"h`), and the macro :c:macro:`!PyDateTime_IMPORT` must be invoked, usually as "
32+
"h`), and the macro :c:macro:`PyDateTime_IMPORT` must be invoked, usually as "
3333
"part of the module initialisation function. The macro puts a pointer to a C "
34-
"structure into a static variable, :c:data:`!PyDateTimeAPI`, that is used by "
34+
"structure into a static variable, :c:data:`PyDateTimeAPI`, that is used by "
3535
"the following macros."
3636
msgstr""
3737

38+
msgid"Import the datetime C API."
39+
msgstr""
40+
41+
msgid""
42+
"On success, populate the :c:var:`PyDateTimeAPI` pointer. On failure, set :c:"
43+
"var:`PyDateTimeAPI` to ``NULL`` and set an exception. The caller must check "
44+
"if an error occurred via :c:func:`PyErr_Occurred`:"
45+
msgstr""
46+
47+
msgid""
48+
"PyDateTime_IMPORT;\n"
49+
"if (PyErr_Occurred()) { /* cleanup */ }"
50+
msgstr""
51+
52+
msgid"This is not compatible with subinterpreters."
53+
msgstr""
54+
55+
msgid"Structure containing the fields for the datetime C API."
56+
msgstr""
57+
58+
msgid"The fields of this structure are private and subject to change."
59+
msgstr""
60+
61+
msgid"Do not use this directly; prefer ``PyDateTime_*`` APIs instead."
62+
msgstr""
63+
64+
msgid"Dynamically allocated object containing the datetime C API."
65+
msgstr""
66+
67+
msgid""
68+
"This variable is only available once :c:macro:`PyDateTime_IMPORT` succeeds."
69+
msgstr""
70+
3871
msgid"This subtype of :c:type:`PyObject` represents a Python date object."
3972
msgstr""
4073

@@ -259,3 +292,17 @@ msgid ""
259292
"Create and return a new :class:`datetime.date` object given an argument "
260293
"tuple suitable for passing to :meth:`datetime.date.fromtimestamp`."
261294
msgstr""
295+
296+
msgid"Internal data"
297+
msgstr""
298+
299+
msgid""
300+
"The following symbols are exposed by the C API but should be considered "
301+
"internal-only."
302+
msgstr""
303+
304+
msgid"Name of the datetime capsule to pass to :c:func:`PyCapsule_Import`."
305+
msgstr""
306+
307+
msgid"Internal usage only. Use :c:macro:`PyDateTime_IMPORT` instead."
308+
msgstr""

‎c-api/gen.po‎

Lines changed: 34 additions & 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:2025-11-15 14:12+0000\n"
11+
"POT-Creation-Date:2025-11-21 14:14+0000\n"
1212
"PO-Revision-Date:2025-09-16 00:00+0000\n"
1313
"Language-Team:Indonesian (https://app.transifex.com/python-doc/teams/5390/"
1414
"id/)\n"
@@ -56,3 +56,36 @@ msgid ""
5656
"to *frame* is stolen by this function. The *frame* argument must not be "
5757
"``NULL``."
5858
msgstr""
59+
60+
msgid""
61+
"Return a new :term:`strong reference` to the code object wrapped by *gen*. "
62+
"This function always succeeds."
63+
msgstr""
64+
65+
msgid"Asynchronous Generator Objects"
66+
msgstr""
67+
68+
msgid":pep:`525`"
69+
msgstr""
70+
71+
msgid""
72+
"The type object corresponding to asynchronous generator objects. This is "
73+
"available as :class:`types.AsyncGeneratorType` in the Python layer."
74+
msgstr""
75+
76+
msgid""
77+
"Create a new asynchronous generator wrapping *frame*, with ``__name__`` and "
78+
"``__qualname__`` set to *name* and *qualname*. *frame* is stolen by this "
79+
"function and must not be ``NULL``."
80+
msgstr""
81+
82+
msgid""
83+
"On success, this function returns a :term:`strong reference` to the new "
84+
"asynchronous generator. On failure, this function returns ``NULL`` with an "
85+
"exception set."
86+
msgstr""
87+
88+
msgid""
89+
"Return true if *op* is an asynchronous generator object, false otherwise. "
90+
"This function always succeeds."
91+
msgstr""

‎c-api/init.po‎

Lines changed: 20 additions & 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:2025-11-07 14:15+0000\n"
15+
"POT-Creation-Date:2025-11-21 14:14+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/"
@@ -2113,6 +2113,25 @@ msgid ""
21132113
"This function now always schedules *func* to be run in the main interpreter."
21142114
msgstr""
21152115

2116+
msgid""
2117+
"Execute all pending calls. This is usually executed automatically by the "
2118+
"interpreter."
2119+
msgstr""
2120+
2121+
msgid""
2122+
"This function returns ``0`` on success, and returns ``-1`` with an exception "
2123+
"set on failure."
2124+
msgstr""
2125+
2126+
msgid""
2127+
"If this is not called in the main thread of the main interpreter, this "
2128+
"function does nothing and returns ``0``. The caller must hold an :term:"
2129+
"`attached thread state`."
2130+
msgstr""
2131+
2132+
msgid"This function only runs pending calls in the main interpreter."
2133+
msgstr""
2134+
21162135
msgid"Profiling and Tracing"
21172136
msgstr""
21182137

‎library/html.parser.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:2025-11-01 14:13+0000\n"
14+
"POT-Creation-Date:2025-11-21 14:14+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/"

‎library/logging.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:2025-10-31 14:16+0000\n"
14+
"POT-Creation-Date:2025-11-19 19:26+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/"

‎library/socketserver.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.14\n"
1313
"Report-Msgid-Bugs-To:\n"
14-
"POT-Creation-Date:2025-11-15 14:12+0000\n"
14+
"POT-Creation-Date:2025-11-21 14:14+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/"
@@ -552,7 +552,7 @@ msgid ""
552552
"until a newline itself. If it had just used a single ``recv()`` without the "
553553
"loop it would just have returned what has been received so far from the "
554554
"client. TCP is stream based: data arrives in the order it was sent, but "
555-
"there no correlation between client ``send()`` or ``sendall()`` calls and "
555+
"thereisno correlation between client ``send()`` or ``sendall()`` calls and "
556556
"the number of ``recv()`` calls on the server required to receive it."
557557
msgstr""
558558

‎whatsnew/3.13.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:2025-10-31 14:16+0000\n"
14+
"POT-Creation-Date:2025-11-19 19:26+0000\n"
1515
"PO-Revision-Date:2025-09-16 00:02+0000\n"
1616
"Last-Translator:python-doc bot, 2025\n"
1717
"Language-Team:Indonesian (https://app.transifex.com/python-doc/teams/5390/"

‎whatsnew/changelog.po‎

Lines changed: 18 additions & 6 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: 2025-11-19 19:26+0000\n"
14+
"POT-Creation-Date: 2025-11-21 14:14+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:02+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"
@@ -132,6 +132,11 @@ msgid ""
132132
"This can occur when ``sys.stdout`` is redirected."
133133
msgstr ""
134134

135+
msgid ""
136+
":gh:`141659`: Fix bad file descriptor errors from ``_posixsubprocess`` on "
137+
"AIX."
138+
msgstr ""
139+
135140
msgid ""
136141
":gh:`141497`: :mod:`ipaddress`: ensure that the methods :meth:`IPv4Network."
137142
"hosts() <ipaddress.IPv4Network.hosts>` and :meth:`IPv6Network.hosts() "
@@ -722,11 +727,6 @@ msgstr ""
722727
msgid "Core and Builtins"
723728
msgstr "Inti dan Bawaan"
724729

725-
msgid ""
726-
":gh:`141659`: Fix bad file descriptor errors from ``_posixsubprocess`` on "
727-
"AIX."
728-
msgstr ""
729-
730730
msgid ""
731731
":gh:`139103`: Improve multithreaded scaling of dataclasses on the free-"
732732
"threaded build."
@@ -966,6 +966,11 @@ msgid ""
966966
"\"CP_UTF8\" which are not valid Python code names. Patch by Victor Stinner."
967967
msgstr ""
968968

969+
msgid ""
970+
":gh:`132657`: Improve performance of :class:`frozenset` by removing locks in "
971+
"the free-threading build."
972+
msgstr ""
973+
969974
msgid ""
970975
":gh:`133400`: Fixed Ctrl+D (^D) behavior in _pyrepl module to match old "
971976
"pre-3.13 REPL behavior."
@@ -999,6 +1004,13 @@ msgstr ""
9991004
msgid "Build"
10001005
msgstr "Pembangunan"
10011006

1007+
msgid ""
1008+
":gh:`141784`: Fix ``_remote_debugging_module.c`` compilation on 32-bit "
1009+
"Linux. Include Python.h before system headers to make sure that "
1010+
"``_remote_debugging_module.c`` uses the same types (ABI) than Python. Patch "
1011+
"by Victor Stinner."
1012+
msgstr ""
1013+
10021014
msgid ""
10031015
":gh:`140768`: Warn when the WASI SDK version doesn't match what's supported."
10041016
msgstr ""

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp