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

Commit21d6be5

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

File tree

6 files changed

+36
-18
lines changed

6 files changed

+36
-18
lines changed

‎c-api/object.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:2025-10-05 14:11+0000\n"
14+
"POT-Creation-Date:2025-10-13 14:15+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/"
@@ -603,6 +603,11 @@ msgstr ""
603603
msgid"Clear the managed dictionary of *obj*."
604604
msgstr""
605605

606+
msgid""
607+
"This function must only be called in a clear function of the type which has "
608+
"the :c:macro:`Py_TPFLAGS_MANAGED_DICT` flag set."
609+
msgstr""
610+
606611
msgid""
607612
"Enable `deferred reference counting <https://peps.python.org/pep-0703/"
608613
"#deferred-reference-counting>`_ on *obj*, if supported by the runtime. In "

‎c-api/typeobj.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-10-05 14:11+0000\n"
14+
"POT-Creation-Date:2025-10-13 14:15+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/"
@@ -2249,7 +2249,7 @@ msgstr ""
22492249

22502250
msgid""
22512251
"If the :c:macro:`Py_TPFLAGS_MANAGED_DICT` bit is set in the :c:member:"
2252-
"`~PyTypeObject.tp_flags` field, thetraverse function must call :c:func:"
2252+
"`~PyTypeObject.tp_flags` field, theclear function must call :c:func:"
22532253
"`PyObject_ClearManagedDict` like this::"
22542254
msgstr""
22552255

‎library/pprint.po‎

Lines changed: 1 addition & 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-10-05 14:11+0000\n"
14+
"POT-Creation-Date:2025-10-13 14:15+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/"
@@ -43,9 +43,6 @@ msgid ""
4343
"adjustable by the *width* parameter defaulting to 80 characters."
4444
msgstr""
4545

46-
msgid"Dictionaries are sorted by key before the display is computed."
47-
msgstr""
48-
4946
msgid"Added support for pretty-printing :class:`types.SimpleNamespace`."
5047
msgstr""
5148

‎library/signal.po‎

Lines changed: 6 additions & 7 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-10-11 14:13+0000\n"
14+
"POT-Creation-Date:2025-10-13 14:15+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/"
@@ -253,8 +253,8 @@ msgid ""
253253
"All the signal numbers are defined symbolically. For example, the hangup "
254254
"signal is defined as :const:`signal.SIGHUP`; the variable names are "
255255
"identical to the names used in C programs, as found in ``<signal.h>``. The "
256-
"Unix man page for ':c:func:`signal`' lists the existing signals (on some "
257-
"systemsthis is :manpage:`signal(2)`, on others the list is in :manpage:"
256+
"Unix man page for '``signal``' lists the existing signals (on some systems "
257+
"this is :manpage:`signal(2)`, on others the list is in :manpage:"
258258
"`signal(7)`). Note that not all systems define the same set of signal names; "
259259
"only those names defined by the system are defined by this module."
260260
msgstr""
@@ -619,10 +619,9 @@ msgid ""
619619
msgstr""
620620

621621
msgid""
622-
"The return value is an object representing the data contained in the :c:type:"
623-
"`siginfo_t` structure, namely: :attr:`si_signo`, :attr:`si_code`, :attr:"
624-
"`si_errno`, :attr:`si_pid`, :attr:`si_uid`, :attr:`si_status`, :attr:"
625-
"`si_band`."
622+
"The return value is an object representing the data contained in the "
623+
"``siginfo_t`` structure, namely: ``si_signo``, ``si_code``, ``si_errno``, "
624+
"``si_pid``, ``si_uid``, ``si_status``, ``si_band``."
626625
msgstr""
627626

628627
msgid"See the man page :manpage:`sigwaitinfo(2)` for further information."

‎using/cmdline.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:2025-10-05 14:11+0000\n"
14+
"POT-Creation-Date:2025-10-13 14:15+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/"
@@ -1333,8 +1333,8 @@ msgstr ""
13331333

13341334
msgid""
13351335
"If this variable is set to any value, the interpreter will not attempt to "
1336-
"load the Python-based :term:`REPL` that requires :mod:`curses` and:mod:"
1337-
"`readline`, and willinstead use the traditional parser-based :term:`REPL`."
1336+
"load the Python-based :term:`REPL` that requires :mod:`readline`, andwill"
1337+
"instead use the traditional parser-based :term:`REPL`."
13381338
msgstr""
13391339

13401340
msgid""

‎whatsnew/changelog.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: 2025-10-11 14:13+0000\n"
14+
"POT-Creation-Date: 2025-10-13 14:15+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/"
@@ -76,6 +76,13 @@ msgstr ""
7676
msgid "Library"
7777
msgstr "Bibliotek"
7878

79+
msgid ""
80+
":gh:`139905`: Add suggestion to error message for :class:`typing.Generic` "
81+
"subclasses when ``cls.__parameters__`` is missing due to a parent class "
82+
"failing to call :meth:`super().__init_subclass__() <object."
83+
"__init_subclass__>` in its ``__init_subclass__``."
84+
msgstr ""
85+
7986
msgid ""
8087
":gh:`139894`: Fix incorrect sharing of current task with the child process "
8188
"while forking in :mod:`asyncio`. Patch by Kumar Aditya."
@@ -332,6 +339,11 @@ msgid ""
332339
"or :class:`ssl.SSLSocket` across multiple threads."
333340
msgstr ""
334341

342+
msgid ""
343+
":gh:`127081`: Fix libc thread safety issues with :mod:`dbm` by performing "
344+
"stateful operations in critical sections."
345+
msgstr ""
346+
335347
msgid ""
336348
":gh:`132551`: Make :class:`io.BytesIO` safe in :term:`free-threaded <free "
337349
"threading>` build."
@@ -374,6 +386,11 @@ msgstr ""
374386
msgid "Core and Builtins"
375387
msgstr ""
376388

389+
msgid ""
390+
":gh:`139988`: Fix a memory leak when failing to create a :class:`~typing."
391+
"Union` type. Patch by Bénédikt Tran."
392+
msgstr ""
393+
377394
msgid ""
378395
":gh:`139748`: Fix reference leaks in error branches of functions accepting "
379396
"path strings or bytes such as :func:`compile` and :func:`os.system`. Patch "

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp