🌐 AI搜索 & 代理 主页
Skip to content

Commit 57c6277

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent 73e90fa commit 57c6277

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: Swedish (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
@@ -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:00+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Swedish (https://app.transifex.com/python-doc/teams/5390/"
@@ -60,3 +60,36 @@ msgid ""
6060
"to *frame* is stolen by this function. The *frame* argument must not be "
6161
"``NULL``."
6262
msgstr ""
63+
64+
msgid ""
65+
"Return a new :term:`strong reference` to the code object wrapped by *gen*. "
66+
"This function always succeeds."
67+
msgstr ""
68+
69+
msgid "Asynchronous Generator Objects"
70+
msgstr ""
71+
72+
msgid ":pep:`525`"
73+
msgstr ""
74+
75+
msgid ""
76+
"The type object corresponding to asynchronous generator objects. This is "
77+
"available as :class:`types.AsyncGeneratorType` in the Python layer."
78+
msgstr ""
79+
80+
msgid ""
81+
"Create a new asynchronous generator wrapping *frame*, with ``__name__`` and "
82+
"``__qualname__`` set to *name* and *qualname*. *frame* is stolen by this "
83+
"function and must not be ``NULL``."
84+
msgstr ""
85+
86+
msgid ""
87+
"On success, this function returns a :term:`strong reference` to the new "
88+
"asynchronous generator. On failure, this function returns ``NULL`` with an "
89+
"exception set."
90+
msgstr ""
91+
92+
msgid ""
93+
"Return true if *op* is an asynchronous generator object, false otherwise. "
94+
"This function always succeeds."
95+
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-01 14:13+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: Daniel Nylander <po@danielnylander.se>, 2025\n"
1818
"Language-Team: Swedish (https://app.transifex.com/python-doc/teams/5390/"
@@ -2100,6 +2100,25 @@ msgid ""
21002100
"This function now always schedules *func* to be run in the main interpreter."
21012101
msgstr ""
21022102

2103+
msgid ""
2104+
"Execute all pending calls. This is usually executed automatically by the "
2105+
"interpreter."
2106+
msgstr ""
2107+
2108+
msgid ""
2109+
"This function returns ``0`` on success, and returns ``-1`` with an exception "
2110+
"set on failure."
2111+
msgstr ""
2112+
2113+
msgid ""
2114+
"If this is not called in the main thread of the main interpreter, this "
2115+
"function does nothing and returns ``0``. The caller must hold an :term:"
2116+
"`attached thread state`."
2117+
msgstr ""
2118+
2119+
msgid "This function only runs pending calls in the main interpreter."
2120+
msgstr ""
2121+
21032122
msgid "Profiling and Tracing"
21042123
msgstr ""
21052124

library/crypt.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: Swedish (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: Swedish (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: Swedish (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+
"there is no correlation between client ``send()`` or ``sendall()`` calls and "
556556
"the number of ``recv()`` calls on the server required to receive it."
557557
msgstr ""
558558

reference/grammar.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: Swedish (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
@@ -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-19 19:26+0000\n"
15+
"POT-Creation-Date: 2025-11-21 14:14+0000\n"
1616
"PO-Revision-Date: 2025-09-16 00:02+0000\n"
1717
"Last-Translator: Daniel Nylander <po@danielnylander.se>, 2025\n"
1818
"Language-Team: Swedish (https://app.transifex.com/python-doc/teams/5390/"
@@ -133,6 +133,11 @@ msgid ""
133133
"This can occur when ``sys.stdout`` is redirected."
134134
msgstr ""
135135

136+
msgid ""
137+
":gh:`141659`: Fix bad file descriptor errors from ``_posixsubprocess`` on "
138+
"AIX."
139+
msgstr ""
140+
136141
msgid ""
137142
":gh:`141497`: :mod:`ipaddress`: ensure that the methods :meth:`IPv4Network."
138143
"hosts() <ipaddress.IPv4Network.hosts>` and :meth:`IPv6Network.hosts() "
@@ -723,11 +728,6 @@ msgstr ""
723728
msgid "Core and Builtins"
724729
msgstr ""
725730

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

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

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

0 commit comments

Comments
 (0)