Skip to content

Commit d3be958

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent 6b6ad69 commit d3be958

File tree

16 files changed

+50
-50
lines changed

16 files changed

+50
-50
lines changed

c-api/index.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-08-09 14:17+0000\n"
14+
"POT-Creation-Date: 2025-08-29 14:17+0000\n"
1515
"PO-Revision-Date: 2025-08-02 17:33+0000\n"
1616
"Last-Translator: Daniel Nylander <[email protected]>, 2025\n"
1717
"Language-Team: Swedish (https://app.transifex.com/python-doc/teams/5390/"

c-api/init.po

Lines changed: 16 additions & 13 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-08-25 14:20+0000\n"
15+
"POT-Creation-Date: 2025-08-29 14:17+0000\n"
1616
"PO-Revision-Date: 2025-08-02 17:33+0000\n"
1717
"Last-Translator: Daniel Nylander <[email protected]>, 2025\n"
1818
"Language-Team: Swedish (https://app.transifex.com/python-doc/teams/5390/"
@@ -3701,20 +3701,23 @@ msgstr ""
37013701
"CPython. De är avsedda att ersätta beroendet av :term:`global interpreter "
37023702
"lock`, och är no-ops i versioner av Python med global interpreter lock."
37033703

3704+
msgid ""
3705+
"Critical sections are intended to be used for custom types implemented in C-"
3706+
"API extensions. They should generally not be used with built-in types like :"
3707+
"class:`list` and :class:`dict` because their public C-APIs already use "
3708+
"critical sections internally, with the notable exception of :c:func:"
3709+
"`PyDict_Next`, which requires critical section to be acquired externally."
3710+
msgstr ""
3711+
37043712
msgid ""
37053713
"Critical sections avoid deadlocks by implicitly suspending active critical "
3706-
"sections and releasing the locks during calls to :c:func:"
3707-
"`PyEval_SaveThread`. When :c:func:`PyEval_RestoreThread` is called, the most "
3708-
"recent critical section is resumed, and its locks reacquired. This means "
3709-
"the critical section API provides weaker guarantees than traditional locks "
3710-
"-- they are useful because their behavior is similar to the :term:`GIL`."
3711-
msgstr ""
3712-
"Kritiska sektioner undviker dödlägen genom att implicit avbryta aktiva "
3713-
"kritiska sektioner och släppa låsen under anrop till :c:func:"
3714-
"`PyEval_SaveThread`. När :c:func:`PyEval_RestoreThread` anropas återupptas "
3715-
"den senaste kritiska sektionen och dess lås återfås. Detta innebär att API:"
3716-
"et för kritiska avsnitt ger svagare garantier än traditionella lås -- de är "
3717-
"användbara eftersom deras beteende liknar :term:`GIL`."
3714+
"sections, hence, they do not provide exclusive access such as provided by "
3715+
"traditional locks like :c:type:`PyMutex`. When a critical section is "
3716+
"started, the per-object lock for the object is acquired. If the code "
3717+
"executed inside the critical section calls C-API functions then it can "
3718+
"suspend the critical section thereby releasing the per-object lock, so other "
3719+
"threads can acquire the per-object lock for the same object."
3720+
msgstr ""
37183721

37193722
msgid ""
37203723
"Variants that accept :c:type:`PyMutex` pointers rather than Python objects "

deprecations/pending-removal-in-3.15.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: 2025-08-09 14:17+0000\n"
15+
"POT-Creation-Date: 2025-08-29 14:17+0000\n"
1616
"PO-Revision-Date: 2025-08-02 17:33+0000\n"
1717
"Last-Translator: Daniel Nylander <[email protected]>, 2025\n"
1818
"Language-Team: Swedish (https://app.transifex.com/python-doc/teams/5390/"

extending/extending.po

Lines changed: 10 additions & 10 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-08-23 14:15+0000\n"
15+
"POT-Creation-Date: 2025-08-29 14:17+0000\n"
1616
"PO-Revision-Date: 2025-08-02 17:33+0000\n"
1717
"Last-Translator: Daniel Nylander <[email protected]>, 2025\n"
1818
"Language-Team: Swedish (https://app.transifex.com/python-doc/teams/5390/"
@@ -2102,15 +2102,15 @@ msgid ""
21022102
"of the original item 1. Now let's suppose the original item 1 was an "
21032103
"instance of a user-defined class, and let's further suppose that the class "
21042104
"defined a :meth:`!__del__` method. If this class instance has a reference "
2105-
"count of 1, disposing of it will call its :meth:`!__del__` method."
2106-
msgstr ""
2107-
"Låt oss följa kontrollflödet in i :c:func:`PyList_SetItem`. Listan äger "
2108-
"referenser till alla sina objekt, så när objekt 1 ersätts måste den göra sig "
2109-
"av med det ursprungliga objektet 1. Låt oss nu anta att det ursprungliga "
2110-
"objektet 1 var en instans av en användardefinierad klass, och låt oss vidare "
2111-
"anta att klassen definierade en :meth:`!__del__`-metod. Om denna "
2112-
"klassinstans har ett referensantal på 1, kommer dess :meth:`!__del__`-metod "
2113-
"att anropas när den kasseras."
2105+
"count of 1, disposing of it will call its :meth:`!__del__` method. "
2106+
"Internally, :c:func:`PyList_SetItem` calls :c:func:`Py_DECREF` on the "
2107+
"replaced item, which invokes replaced item's corresponding :c:member:"
2108+
"`~PyTypeObject.tp_dealloc` function. During deallocation, :c:member:"
2109+
"`~PyTypeObject.tp_dealloc` calls :c:member:`~PyTypeObject.tp_finalize`, "
2110+
"which is mapped to the :meth:`!__del__` method for class instances (see :pep:"
2111+
"`442`). This entire sequence happens synchronously within the :c:func:"
2112+
"`PyList_SetItem` call."
2113+
msgstr ""
21142114

21152115
msgid ""
21162116
"Since it is written in Python, the :meth:`!__del__` method can execute "

library/asyncio-protocol.po

Lines changed: 4 additions & 10 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-08-19 14:18+0000\n"
15+
"POT-Creation-Date: 2025-08-29 14:17+0000\n"
1616
"PO-Revision-Date: 2025-08-02 17:33+0000\n"
1717
"Last-Translator: Daniel Nylander <[email protected]>, 2025\n"
1818
"Language-Team: Swedish (https://app.transifex.com/python-doc/teams/5390/"
@@ -597,25 +597,19 @@ msgstr ""
597597
"för heltal *fd*:"
598598

599599
msgid ""
600-
"``0``: readable streaming transport of the standard input (*stdin*), or :"
600+
"``0``: writable streaming transport of the standard input (*stdin*), or :"
601601
"const:`None` if the subprocess was not created with ``stdin=PIPE``"
602602
msgstr ""
603-
"``0``: läsbar strömmande transport av standardinmatningen (*stdin*), eller :"
604-
"const:`None`` om underprocessen inte skapades med ``stdin=PIPE``"
605603

606604
msgid ""
607-
"``1``: writable streaming transport of the standard output (*stdout*), or :"
605+
"``1``: readable streaming transport of the standard output (*stdout*), or :"
608606
"const:`None` if the subprocess was not created with ``stdout=PIPE``"
609607
msgstr ""
610-
"``1``: skrivbar strömmande transport av standardutdata (*stdout*), eller :"
611-
"const:`None`` om subprocessen inte skapades med ``stdout=PIPE``"
612608

613609
msgid ""
614-
"``2``: writable streaming transport of the standard error (*stderr*), or :"
610+
"``2``: readable streaming transport of the standard error (*stderr*), or :"
615611
"const:`None` if the subprocess was not created with ``stderr=PIPE``"
616612
msgstr ""
617-
"``2``: skrivbar strömmande transport av standardfelet (*stderr*), eller :"
618-
"const:`None`` om underprocessen inte skapades med ``stderr=PIPE``"
619613

620614
msgid "other *fd*: :const:`None`"
621615
msgstr "andra *fd*: :const:`None`"

library/asyncio-sync.po

Lines changed: 3 additions & 5 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-08-23 14:15+0000\n"
15+
"POT-Creation-Date: 2025-08-29 14:17+0000\n"
1616
"PO-Revision-Date: 2025-08-02 17:33+0000\n"
1717
"Last-Translator: Daniel Nylander <[email protected]>, 2025\n"
1818
"Language-Team: Swedish (https://app.transifex.com/python-doc/teams/5390/"
@@ -257,11 +257,9 @@ msgid "Clear (unset) the event."
257257
msgstr "Rensa (avmarkera) händelsen."
258258

259259
msgid ""
260-
"Tasks awaiting on :meth:`~Event.wait` will now block until the :meth:`~Event."
261-
"set` method is called again."
260+
"Subsequent tasks awaiting on :meth:`~Event.wait` will now block until the :"
261+
"meth:`~Event.set` method is called again."
262262
msgstr ""
263-
"Uppgifter som väntar på :meth:`~Event.wait` kommer nu att blockeras tills "
264-
"metoden :meth:`~Event.set` anropas igen."
265263

266264
msgid "Return ``True`` if the event is set."
267265
msgstr "Returnerar ``True`` om händelsen är inställd."

library/crypt.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: 2025-08-09 14:17+0000\n"
15+
"POT-Creation-Date: 2025-08-29 14:17+0000\n"
1616
"PO-Revision-Date: 2025-08-02 17:33+0000\n"
1717
"Last-Translator: Daniel Nylander <[email protected]>, 2025\n"
1818
"Language-Team: Swedish (https://app.transifex.com/python-doc/teams/5390/"

library/dialog.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-08-09 14:17+0000\n"
14+
"POT-Creation-Date: 2025-08-29 14:17+0000\n"
1515
"PO-Revision-Date: 2025-08-02 17:34+0000\n"
1616
"Last-Translator: Daniel Nylander <[email protected]>, 2025\n"
1717
"Language-Team: Swedish (https://app.transifex.com/python-doc/teams/5390/"

library/keyword.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-08-09 14:17+0000\n"
14+
"POT-Creation-Date: 2025-08-29 14:17+0000\n"
1515
"PO-Revision-Date: 2025-08-02 17:34+0000\n"
1616
"Last-Translator: Daniel Nylander <[email protected]>, 2025\n"
1717
"Language-Team: Swedish (https://app.transifex.com/python-doc/teams/5390/"

library/mailcap.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: 2025-08-09 14:17+0000\n"
15+
"POT-Creation-Date: 2025-08-29 14:17+0000\n"
1616
"PO-Revision-Date: 2025-08-02 17:34+0000\n"
1717
"Last-Translator: Daniel Nylander <[email protected]>, 2025\n"
1818
"Language-Team: Swedish (https://app.transifex.com/python-doc/teams/5390/"

0 commit comments

Comments
 (0)