Skip to content

Commit 8c6d64f

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent a4696ce commit 8c6d64f

36 files changed

Lines changed: 405 additions & 238 deletions

c-api/hash.po

Lines changed: 4 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-09-08 14:49-0300\n"
11+
"POT-Creation-Date: 2025-09-11 14:18+0000\n"
1212
"PO-Revision-Date: 2025-08-15 18:59+0000\n"
1313
"Language-Team: German (https://app.transifex.com/python-doc/teams/5390/de/)\n"
1414
"MIME-Version: 1.0\n"
@@ -50,6 +50,9 @@ msgstr ""
5050
msgid "Hash function definition used by :c:func:`PyHash_GetFuncDef`."
5151
msgstr ""
5252

53+
msgid "Hash function."
54+
msgstr ""
55+
5356
msgid "Hash function name (UTF-8 encoded string)."
5457
msgstr ""
5558

c-api/init.po

Lines changed: 7 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-09-08 14:49-0300\n"
14+
"POT-Creation-Date: 2025-09-11 14:18+0000\n"
1515
"PO-Revision-Date: 2025-08-15 18:59+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: German (https://app.transifex.com/python-doc/teams/5390/de/)\n"
@@ -1284,6 +1284,11 @@ msgid ""
12841284
"which interpreter they belong."
12851285
msgstr ""
12861286

1287+
msgid ""
1288+
":pep:`684` introduced the possibility of a :ref:`per-interpreter GIL <per-"
1289+
"interpreter-gil>`. See :c:func:`Py_NewInterpreterFromConfig`."
1290+
msgstr ""
1291+
12871292
msgid ""
12881293
"This data structure represents the state of a single thread. The only "
12891294
"public data member is:"
@@ -1942,7 +1947,7 @@ msgid ""
19421947
"interpreters or blocking any others. Thus a single Python process can truly "
19431948
"take advantage of multiple CPU cores when running Python code. The "
19441949
"isolation also encourages a different approach to concurrency than that of "
1945-
"just using threads. (See :pep:`554`.)"
1950+
"just using threads. (See :pep:`554` and :pep:`684`.)"
19461951
msgstr ""
19471952

19481953
msgid ""

c-api/long.po

Lines changed: 10 additions & 10 deletions
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-09-08 14:49-0300\n"
11+
"POT-Creation-Date: 2025-09-11 14:18+0000\n"
1212
"PO-Revision-Date: 2025-08-15 18:59+0000\n"
1313
"Language-Team: German (https://app.transifex.com/python-doc/teams/5390/de/)\n"
1414
"MIME-Version: 1.0\n"
@@ -53,9 +53,9 @@ msgid ""
5353
msgstr ""
5454

5555
msgid ""
56-
"The current implementation keeps an array of integer objects for all "
57-
"integers between ``-5`` and ``256``. When you create an int in that range "
58-
"you actually just get back a reference to the existing object."
56+
"CPython keeps an array of integer objects for all integers between ``-5`` "
57+
"and ``256``. When you create an int in that range you actually just get "
58+
"back a reference to the existing object."
5959
msgstr ""
6060

6161
msgid ""
@@ -308,6 +308,12 @@ msgid ""
308308
"representation of *obj*."
309309
msgstr ""
310310

311+
msgid ""
312+
"If *obj* is not an instance of :c:type:`PyLongObject`, first call its :meth:"
313+
"`~object.__index__` method (if present) to convert it to a :c:type:"
314+
"`PyLongObject`."
315+
msgstr ""
316+
311317
msgid "If the *obj* value is out of range, raise an :exc:`OverflowError`."
312318
msgstr ""
313319

@@ -324,12 +330,6 @@ msgid ""
324330
"representation of *obj*."
325331
msgstr ""
326332

327-
msgid ""
328-
"If *obj* is not an instance of :c:type:`PyLongObject`, first call its :meth:"
329-
"`~object.__index__` method (if present) to convert it to a :c:type:"
330-
"`PyLongObject`."
331-
msgstr ""
332-
333333
msgid "If *obj* is negative, raise a :exc:`ValueError`."
334334
msgstr ""
335335

extending/extending.po

Lines changed: 4 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: 2025-09-08 14:49-0300\n"
14+
"POT-Creation-Date: 2025-09-11 14:18+0000\n"
1515
"PO-Revision-Date: 2025-08-15 19:00+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: German (https://app.transifex.com/python-doc/teams/5390/de/)\n"
@@ -289,9 +289,9 @@ msgid "SpamError = PyErr_NewException(\"spam.error\", NULL, NULL);"
289289
msgstr ""
290290

291291
msgid ""
292-
"Since :c:data:`!SpamError` is a global variable, it will be overwitten every "
293-
"time the module is reinitialized, when the :c:data:`Py_mod_exec` function is "
294-
"called."
292+
"Since :c:data:`!SpamError` is a global variable, it will be overwritten "
293+
"every time the module is reinitialized, when the :c:data:`Py_mod_exec` "
294+
"function is called."
295295
msgstr ""
296296

297297
msgid ""

glossary.po

Lines changed: 9 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-09-08 14:49-0300\n"
14+
"POT-Creation-Date: 2025-09-11 14:18+0000\n"
1515
"PO-Revision-Date: 2025-08-15 19:00+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: German (https://app.transifex.com/python-doc/teams/5390/de/)\n"
@@ -45,7 +45,8 @@ msgid ""
4545
"quotes), or after specifying a decorator."
4646
msgstr ""
4747

48-
msgid "The :const:`Ellipsis` built-in constant."
48+
msgid ""
49+
"The three dots form of the :ref:`Ellipsis <bltin-ellipsis-object>` object."
4950
msgstr ""
5051

5152
msgid "abstract base class"
@@ -2253,6 +2254,12 @@ msgid ""
22532254
"\"``import this``\" at the interactive prompt."
22542255
msgstr ""
22552256

2257+
msgid "..."
2258+
msgstr ""
2259+
2260+
msgid "ellipsis literal"
2261+
msgstr ""
2262+
22562263
msgid "C-contiguous"
22572264
msgstr ""
22582265

howto/enum.po

Lines changed: 3 additions & 3 deletions
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-09-08 14:49-0300\n"
11+
"POT-Creation-Date: 2025-09-11 14:18+0000\n"
1212
"PO-Revision-Date: 2025-08-15 19:00+0000\n"
1313
"Language-Team: German (https://app.transifex.com/python-doc/teams/5390/de/)\n"
1414
"MIME-Version: 1.0\n"
@@ -1290,12 +1290,12 @@ msgid ""
12901290
msgstr ""
12911291

12921292
msgid ""
1293-
":meth:`~EnumType._add_alias_` -- adds a new name as an alias to an existing "
1293+
":meth:`~Enum._add_alias_` -- adds a new name as an alias to an existing "
12941294
"member."
12951295
msgstr ""
12961296

12971297
msgid ""
1298-
":meth:`~EnumType._add_value_alias_` -- adds a new value as an alias to an "
1298+
":meth:`~Enum._add_value_alias_` -- adds a new value as an alias to an "
12991299
"existing member. See `MultiValueEnum`_ for an example."
13001300
msgstr ""
13011301

howto/remote_debugging.po

Lines changed: 7 additions & 14 deletions
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-09-08 14:49-0300\n"
11+
"POT-Creation-Date: 2025-09-11 14:18+0000\n"
1212
"PO-Revision-Date: 2025-08-15 19:00+0000\n"
1313
"Language-Team: German (https://app.transifex.com/python-doc/teams/5390/de/)\n"
1414
"MIME-Version: 1.0\n"
@@ -515,14 +515,14 @@ msgid ""
515515
msgstr ""
516516

517517
msgid ""
518-
"3. Optionally, use the offset ``interpreter_state.threads_head`` to iterate "
518+
"Optionally, use the offset ``interpreter_state.threads_head`` to iterate "
519519
"through the linked list of all thread states. Each ``PyThreadState`` "
520520
"structure contains a ``native_thread_id`` field, which may be compared to a "
521521
"target thread ID to find a specific thread."
522522
msgstr ""
523523

524524
msgid ""
525-
"1. Once a valid ``PyThreadState`` has been found, its address can be used in "
525+
"Once a valid ``PyThreadState`` has been found, its address can be used in "
526526
"later steps of the protocol, such as writing debugger control fields and "
527527
"scheduling execution."
528528
msgstr ""
@@ -613,25 +613,18 @@ msgid ""
613613
msgstr ""
614614

615615
msgid ""
616-
"``debugger_script_path``: A fixed-size buffer that holds the full path to a"
617-
msgstr ""
618-
619-
msgid ""
616+
"``debugger_script_path``: A fixed-size buffer that holds the full path to a "
620617
"Python source file (``.py``). This file must be accessible and readable by "
621618
"the target process when execution is triggered."
622619
msgstr ""
623620

624621
msgid ""
625-
"``debugger_pending_call``: An integer flag. Setting this to ``1`` tells the"
626-
msgstr ""
627-
628-
msgid "interpreter that a script is ready to be executed."
629-
msgstr ""
630-
631-
msgid "``eval_breaker``: A field checked by the interpreter during execution."
622+
"``debugger_pending_call``: An integer flag. Setting this to ``1`` tells the "
623+
"interpreter that a script is ready to be executed."
632624
msgstr ""
633625

634626
msgid ""
627+
"``eval_breaker``: A field checked by the interpreter during execution. "
635628
"Setting bit 5 (``_PY_EVAL_PLEASE_STOP_BIT``, value ``1U << 5``) in this "
636629
"field causes the interpreter to pause and check for debugger activity."
637630
msgstr ""

library/collections.po

Lines changed: 4 additions & 4 deletions
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-09-08 14:49-0300\n"
11+
"POT-Creation-Date: 2025-09-11 14:18+0000\n"
1212
"PO-Revision-Date: 2025-08-15 19:00+0000\n"
1313
"Language-Team: German (https://app.transifex.com/python-doc/teams/5390/de/)\n"
1414
"MIME-Version: 1.0\n"
@@ -860,9 +860,9 @@ msgid ":class:`defaultdict` objects support the following instance variable:"
860860
msgstr ""
861861

862862
msgid ""
863-
"This attribute is used by the :meth:`__missing__` method; it is initialized "
864-
"from the first argument to the constructor, if present, or to ``None``, if "
865-
"absent."
863+
"This attribute is used by the :meth:`~defaultdict.__missing__` method; it is "
864+
"initialized from the first argument to the constructor, if present, or to "
865+
"``None``, if absent."
866866
msgstr ""
867867

868868
msgid ""

library/concurrent.futures.po

Lines changed: 5 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: 2025-09-08 14:49-0300\n"
14+
"POT-Creation-Date: 2025-09-11 14:18+0000\n"
1515
"PO-Revision-Date: 2025-08-15 19:00+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: German (https://app.transifex.com/python-doc/teams/5390/de/)\n"
@@ -144,9 +144,10 @@ msgid ""
144144
msgstr ""
145145

146146
msgid ""
147-
"You can avoid having to call this method explicitly if you use the :keyword:"
148-
"`with` statement, which will shutdown the :class:`Executor` (waiting as if :"
149-
"meth:`Executor.shutdown` were called with *wait* set to ``True``)::"
147+
"You can avoid having to call this method explicitly if you use the executor "
148+
"as a :term:`context manager` via the :keyword:`with` statement, which will "
149+
"shutdown the :class:`Executor` (waiting as if :meth:`Executor.shutdown` were "
150+
"called with *wait* set to ``True``)::"
150151
msgstr ""
151152

152153
msgid ""

library/constants.po

Lines changed: 5 additions & 5 deletions
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-09-08 14:49-0300\n"
11+
"POT-Creation-Date: 2025-09-11 14:18+0000\n"
1212
"PO-Revision-Date: 2025-08-15 19:00+0000\n"
1313
"Language-Team: German (https://app.transifex.com/python-doc/teams/5390/de/)\n"
1414
"MIME-Version: 1.0\n"
@@ -80,10 +80,10 @@ msgid ""
8080
msgstr ""
8181

8282
msgid ""
83-
"The same as the ellipsis literal \"``...``\". Special value used mostly in "
84-
"conjunction with extended slicing syntax for user-defined container data "
85-
"types. ``Ellipsis`` is the sole instance of the :data:`types.EllipsisType` "
86-
"type."
83+
"The same as the ellipsis literal \"``...``\", an object frequently used to "
84+
"indicate that something is omitted. Assignment to ``Ellipsis`` is possible, "
85+
"but assignment to ``...`` raises a :exc:`SyntaxError`. ``Ellipsis`` is the "
86+
"sole instance of the :data:`types.EllipsisType` type."
8787
msgstr ""
8888

8989
msgid ""

0 commit comments

Comments
 (0)