Skip to content

Commit 1c03abd

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent 20932a9 commit 1c03abd

File tree

12 files changed

+124
-162
lines changed

12 files changed

+124
-162
lines changed

c-api/dict.po

Lines changed: 11 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-08-23 14:15+0000\n"
15+
"POT-Creation-Date: 2025-08-27 14:18+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/"
@@ -434,6 +434,16 @@ msgstr ""
434434
"}\n"
435435
"Py_END_CRITICAL_SECTION();"
436436

437+
msgid ""
438+
"On the free-threaded build, this function can be used safely inside a "
439+
"critical section. However, the references returned for *pkey* and *pvalue* "
440+
"are :term:`borrowed <borrowed reference>` and are only valid while the "
441+
"critical section is held. If you need to use these objects outside the "
442+
"critical section or when the critical section can be suspended, create a :"
443+
"term:`strong reference <strong reference>` (for example, using :c:func:"
444+
"`Py_NewRef`)."
445+
msgstr ""
446+
437447
msgid ""
438448
"Iterate over mapping object *b* adding key-value pairs to dictionary *a*. "
439449
"*b* may be a dictionary, or any object supporting :c:func:`PyMapping_Keys` "

glossary.po

Lines changed: 3 additions & 3 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-27 14:18+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/"
@@ -241,8 +241,8 @@ msgstr ""
241241
msgid "asynchronous generator iterator"
242242
msgstr "asynkron generator iterator"
243243

244-
msgid "An object created by a :term:`asynchronous generator` function."
245-
msgstr "Ett objekt som skapas av en :term:`asynkron generator`-funktion."
244+
msgid "An object created by an :term:`asynchronous generator` function."
245+
msgstr ""
246246

247247
msgid ""
248248
"This is an :term:`asynchronous iterator` which when called using the :meth:"

library/difflib.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-23 14:15+0000\n"
15+
"POT-Creation-Date: 2025-08-27 14:18+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/"
@@ -506,20 +506,14 @@ msgstr ""
506506
"ignorerbart. Används som standard för parametern *charjunk* i :func:`ndiff`."
507507

508508
msgid ""
509-
"`Pattern Matching: The Gestalt Approach <https://www.drdobbs.com/database/"
510-
"pattern-matching-the-gestalt-approach/184407970>`_"
509+
"`Pattern Matching: The Gestalt Approach <https://jacobfilipp.com/DrDobbs/"
510+
"articles/DDJ/1988/8807/8807c/8807c.htm>`_"
511511
msgstr ""
512-
"`Mönstermatchning: Gestaltmetoden <https://www.drdobbs.com/database/pattern-"
513-
"matching-the-gestalt-approach/184407970>`_"
514512

515513
msgid ""
516514
"Discussion of a similar algorithm by John W. Ratcliff and D. E. Metzener. "
517-
"This was published in `Dr. Dobb's Journal <https://www.drdobbs.com/>`_ in "
518-
"July, 1988."
515+
"This was published in Dr. Dobb's Journal in July, 1988."
519516
msgstr ""
520-
"Diskussion om en liknande algoritm av John W. Ratcliff och D. E. Metzener. "
521-
"Detta publicerades i `Dr. Dobb's Journal <https://www.drdobbs.com/>`_ i juli "
522-
"1988."
523517

524518
msgid "SequenceMatcher Objects"
525519
msgstr "SequenceMatcher-objekt"

library/doctest.po

Lines changed: 11 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-08-25 14:20+0000\n"
15+
"POT-Creation-Date: 2025-08-27 14:18+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/"
@@ -636,6 +636,16 @@ msgstr ""
636636
"Alla klasser som hittas genomsöks rekursivt på samma sätt för att testa "
637637
"dokumentsträngar i de metoder och nästlade klasser som ingår."
638638

639+
msgid ""
640+
"``doctest`` can only automatically discover classes and functions that are "
641+
"defined at the module level or inside other classes."
642+
msgstr ""
643+
644+
msgid ""
645+
"Since nested classes and functions only exist when an outer function is "
646+
"called, they cannot be discovered. Define them outside to make them visible."
647+
msgstr ""
648+
639649
msgid "How are Docstring Examples Recognized?"
640650
msgstr "Hur känns Docstring-exempel igen?"
641651

library/functions.po

Lines changed: 27 additions & 60 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-27 14:18+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/"
@@ -406,14 +406,10 @@ msgstr ""
406406

407407
msgid ""
408408
"Convert an integer number to a binary string prefixed with \"0b\". The "
409-
"result is a valid Python expression. If *x* is not a Python :class:`int` "
410-
"object, it has to define an :meth:`~object.__index__` method that returns an "
411-
"integer. Some examples:"
409+
"result is a valid Python expression. If *integer* is not a Python :class:"
410+
"`int` object, it has to define an :meth:`~object.__index__` method that "
411+
"returns an integer. Some examples:"
412412
msgstr ""
413-
"Konverterar ett heltal till en binär sträng med prefixet \"0b\". Resultatet "
414-
"är ett giltigt Python-uttryck. Om *x* inte är ett Python :class:`int`-objekt "
415-
"måste det definiera en :meth:`~object.__index__`-metod som returnerar ett "
416-
"heltal. Några exempel:"
417413

418414
msgid ""
419415
"If the prefix \"0b\" is desired or not, you can use either of the following "
@@ -588,21 +584,15 @@ msgstr ""
588584
"3.2."
589585

590586
msgid ""
591-
"Return the string representing a character whose Unicode code point is the "
592-
"integer *i*. For example, ``chr(97)`` returns the string ``'a'``, while "
587+
"Return the string representing a character with the specified Unicode code "
588+
"point. For example, ``chr(97)`` returns the string ``'a'``, while "
593589
"``chr(8364)`` returns the string ``'€'``. This is the inverse of :func:`ord`."
594590
msgstr ""
595-
"Returnerar den sträng som representerar ett tecken vars Unicode-kodpunkt är "
596-
"heltalet *i*. Till exempel returnerar ``chr(97)`` strängen ``'a'``, medan "
597-
"``chr(8364)`` returnerar strängen ``'€'``. Detta är inversen av :func:`ord`."
598591

599592
msgid ""
600593
"The valid range for the argument is from 0 through 1,114,111 (0x10FFFF in "
601-
"base 16). :exc:`ValueError` will be raised if *i* is outside that range."
594+
"base 16). :exc:`ValueError` will be raised if it is outside that range."
602595
msgstr ""
603-
"Det giltiga intervallet för argumentet är från 0 till 1,114,111 (0x10FFFF i "
604-
"bas 16). :exc:`ValueError` kommer att uppstå om *i* är utanför detta "
605-
"intervall."
606596

607597
msgid "Transform a method into a class method."
608598
msgstr "Omvandla en metod till en klassmetod."
@@ -1617,12 +1607,9 @@ msgstr ""
16171607

16181608
msgid ""
16191609
"Convert an integer number to a lowercase hexadecimal string prefixed with "
1620-
"\"0x\". If *x* is not a Python :class:`int` object, it has to define an :"
1621-
"meth:`~object.__index__` method that returns an integer. Some examples:"
1610+
"\"0x\". If *integer* is not a Python :class:`int` object, it has to define "
1611+
"an :meth:`~object.__index__` method that returns an integer. Some examples:"
16221612
msgstr ""
1623-
"Konverterar ett heltal till en hexadecimal sträng med gemener och prefixet "
1624-
"\"0x\". Om *x* inte är ett Python :class:`int`-objekt måste det definiera "
1625-
"en :meth:`~object.__index__`-metod som returnerar ett heltal. Några exempel:"
16261613

16271614
msgid ""
16281615
"If you want to convert an integer number to an uppercase or lower "
@@ -1876,29 +1863,17 @@ msgstr ""
18761863
msgid ""
18771864
"Return an :term:`iterator` object. The first argument is interpreted very "
18781865
"differently depending on the presence of the second argument. Without a "
1879-
"second argument, *object* must be a collection object which supports the :"
1880-
"term:`iterable` protocol (the :meth:`~object.__iter__` method), or it must "
1881-
"support the sequence protocol (the :meth:`~object.__getitem__` method with "
1882-
"integer arguments starting at ``0``). If it does not support either of "
1883-
"those protocols, :exc:`TypeError` is raised. If the second argument, "
1884-
"*sentinel*, is given, then *object* must be a callable object. The iterator "
1885-
"created in this case will call *object* with no arguments for each call to "
1886-
"its :meth:`~iterator.__next__` method; if the value returned is equal to "
1887-
"*sentinel*, :exc:`StopIteration` will be raised, otherwise the value will be "
1888-
"returned."
1889-
msgstr ""
1890-
"Returnerar ett :term:`iterator`\\-objekt. Det första argumentet tolkas "
1891-
"mycket olika beroende på om det andra argumentet finns med. Utan ett andra "
1892-
"argument måste *object* vara ett samlingsobjekt som stöder protokollet :term:"
1893-
"`iterable` (metoden :meth:`~object.__iter__`), eller så måste det stödja "
1894-
"protokollet sequence (metoden :meth:`~object.__getitem__` med "
1895-
"heltalsargument som börjar på ``0``). Om den inte stöder något av dessa "
1896-
"protokoll, :exc:`TypeError`. Om det andra argumentet, *sentinel*, anges "
1897-
"måste *object* vara ett anropsbart objekt. Den iterator som skapas i detta "
1898-
"fall kommer att anropa *objekt* utan argument för varje anrop till dess :"
1899-
"meth:`~iterator.__next__`-metod; om det returnerade värdet är lika med "
1900-
"*sentinel*, kommer :exc:`StopIteration` att tas upp, annars kommer värdet "
1901-
"att returneras."
1866+
"second argument, the single argument must be a collection object which "
1867+
"supports the :term:`iterable` protocol (the :meth:`~object.__iter__` "
1868+
"method), or it must support the sequence protocol (the :meth:`~object."
1869+
"__getitem__` method with integer arguments starting at ``0``). If it does "
1870+
"not support either of those protocols, :exc:`TypeError` is raised. If the "
1871+
"second argument, *sentinel*, is given, then the first argument must be a "
1872+
"callable object. The iterator created in this case will call *callable* "
1873+
"with no arguments for each call to its :meth:`~iterator.__next__` method; if "
1874+
"the value returned is equal to *sentinel*, :exc:`StopIteration` will be "
1875+
"raised, otherwise the value will be returned."
1876+
msgstr ""
19021877

19031878
msgid "See also :ref:`typeiter`."
19041879
msgstr "Se även :ref:`typeiter`."
@@ -2183,14 +2158,10 @@ msgstr ""
21832158

21842159
msgid ""
21852160
"Convert an integer number to an octal string prefixed with \"0o\". The "
2186-
"result is a valid Python expression. If *x* is not a Python :class:`int` "
2187-
"object, it has to define an :meth:`~object.__index__` method that returns an "
2188-
"integer. For example:"
2161+
"result is a valid Python expression. If *integer* is not a Python :class:"
2162+
"`int` object, it has to define an :meth:`~object.__index__` method that "
2163+
"returns an integer. For example:"
21892164
msgstr ""
2190-
"Konverterar ett heltal till en oktal sträng med prefixet \"0o\". Resultatet "
2191-
"är ett giltigt Python-uttryck. Om *x* inte är ett Python :class:`int`-"
2192-
"objekt, måste det definiera en :meth:`~object.__index__`-metod som "
2193-
"returnerar ett heltal. Till exempel"
21942165

21952166
msgid ""
21962167
"If you want to convert an integer number to an octal string either with the "
@@ -2987,15 +2958,11 @@ msgstr ""
29872958
" return f\"Person('{self.name}', {self.age})\""
29882959

29892960
msgid ""
2990-
"Return a reverse :term:`iterator`. *seq* must be an object which has a :"
2991-
"meth:`~object.__reversed__` method or supports the sequence protocol (the :"
2992-
"meth:`~object.__len__` method and the :meth:`~object.__getitem__` method "
2993-
"with integer arguments starting at ``0``)."
2961+
"Return a reverse :term:`iterator`. The argument must be an object which has "
2962+
"a :meth:`~object.__reversed__` method or supports the sequence protocol "
2963+
"(the :meth:`~object.__len__` method and the :meth:`~object.__getitem__` "
2964+
"method with integer arguments starting at ``0``)."
29942965
msgstr ""
2995-
"Returnerar en omvänd :term:`iterator`. *seq* måste vara ett objekt som har "
2996-
"en :meth:`~object.__reversed__`-metod eller som stöder sekvensprotokollet (:"
2997-
"meth:`~object.__len__`-metoden och :meth:`~object.__getitem__`-metoden med "
2998-
"heltalsargument som börjar på ``0``)."
29992966

30002967
msgid ""
30012968
"Return *number* rounded to *ndigits* precision after the decimal point. If "

library/stdtypes.po

Lines changed: 28 additions & 48 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-27 14:18+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/"
@@ -3216,11 +3216,19 @@ msgstr ""
32163216
msgid ""
32173217
"Return the lowest index in the string where substring *sub* is found within "
32183218
"the slice ``s[start:end]``. Optional arguments *start* and *end* are "
3219-
"interpreted as in slice notation. Return ``-1`` if *sub* is not found."
3219+
"interpreted as in slice notation. Return ``-1`` if *sub* is not found. For "
3220+
"example::"
3221+
msgstr ""
3222+
3223+
msgid ""
3224+
">>> 'spam, spam, spam'.find('sp')\n"
3225+
"0\n"
3226+
">>> 'spam, spam, spam'.find('sp', 5)\n"
3227+
"6"
3228+
msgstr ""
3229+
3230+
msgid "See also :meth:`rfind` and :meth:`index`."
32203231
msgstr ""
3221-
"Returnerar det lägsta indexet i strängen där delsträngen *sub* finns inom "
3222-
"skivan ``s[start:end]``. De valfria argumenten *start* och *end* tolkas som "
3223-
"i slice-notation. Returnerar ``-1`` om *sub* inte hittas."
32243232

32253233
msgid ""
32263234
"The :meth:`~str.find` method should be used only if you need to know the "
@@ -3585,14 +3593,10 @@ msgstr ""
35853593

35863594
msgid ""
35873595
"If there are two arguments, they must be strings of equal length, and in the "
3588-
"resulting dictionary, each character in x will be mapped to the character at "
3589-
"the same position in y. If there is a third argument, it must be a string, "
3590-
"whose characters will be mapped to ``None`` in the result."
3596+
"resulting dictionary, each character in *from* will be mapped to the "
3597+
"character at the same position in *to*. If there is a third argument, it "
3598+
"must be a string, whose characters will be mapped to ``None`` in the result."
35913599
msgstr ""
3592-
"Om det finns två argument måste de vara strängar av samma längd, och i den "
3593-
"resulterande ordlistan kommer varje tecken i x att mappas till tecknet på "
3594-
"samma position i y. Om det finns ett tredje argument måste det vara en "
3595-
"sträng, vars tecken kommer att mappas till ``None`` i resultatet."
35963600

35973601
msgid ""
35983602
"Split the string at the first occurrence of *sep*, and return a 3-tuple "
@@ -5527,18 +5531,11 @@ msgstr ""
55275531

55285532
msgid ""
55295533
"Return a copy of the sequence with specified leading bytes removed. The "
5530-
"*chars* argument is a binary sequence specifying the set of byte values to "
5531-
"be removed - the name refers to the fact this method is usually used with "
5532-
"ASCII characters. If omitted or ``None``, the *chars* argument defaults to "
5533-
"removing ASCII whitespace. The *chars* argument is not a prefix; rather, "
5534+
"*bytes* argument is a binary sequence specifying the set of byte values to "
5535+
"be removed. If omitted or ``None``, the *bytes* argument defaults to "
5536+
"removing ASCII whitespace. The *bytes* argument is not a prefix; rather, "
55345537
"all combinations of its values are stripped::"
55355538
msgstr ""
5536-
"Returnerar en kopia av sekvensen med angivna inledande byte borttagna. "
5537-
"Argumentet *chars* är en binär sekvens som anger den uppsättning bytevärden "
5538-
"som ska tas bort - namnet hänvisar till att denna metod vanligtvis används "
5539-
"med ASCII-tecken. Om *chars*-argumentet utelämnas eller ``None``, tas ASCII-"
5540-
"teckenspråk bort som standard. Argumentet *chars* är inte ett prefix, utan "
5541-
"alla kombinationer av dess värden tas bort::"
55425539

55435540
msgid ""
55445541
">>> b' spacious '.lstrip()\n"
@@ -5600,18 +5597,11 @@ msgstr ""
56005597

56015598
msgid ""
56025599
"Return a copy of the sequence with specified trailing bytes removed. The "
5603-
"*chars* argument is a binary sequence specifying the set of byte values to "
5604-
"be removed - the name refers to the fact this method is usually used with "
5605-
"ASCII characters. If omitted or ``None``, the *chars* argument defaults to "
5606-
"removing ASCII whitespace. The *chars* argument is not a suffix; rather, "
5600+
"*bytes* argument is a binary sequence specifying the set of byte values to "
5601+
"be removed. If omitted or ``None``, the *bytes* argument defaults to "
5602+
"removing ASCII whitespace. The *bytes* argument is not a suffix; rather, "
56075603
"all combinations of its values are stripped::"
56085604
msgstr ""
5609-
"Returnerar en kopia av sekvensen med angivna efterföljande byte borttagna. "
5610-
"Argumentet *chars* är en binär sekvens som anger den uppsättning bytevärden "
5611-
"som ska tas bort - namnet hänvisar till att denna metod vanligtvis används "
5612-
"med ASCII-tecken. Om argumentet *chars* utelämnas eller ``None``, tas ASCII-"
5613-
"teckensnitt bort som standard. Argumentet *chars* är inte ett suffix, utan "
5614-
"alla kombinationer av dess värden tas bort::"
56155605

56165606
msgid ""
56175607
">>> b' spacious '.rstrip()\n"
@@ -5725,19 +5715,11 @@ msgstr ""
57255715

57265716
msgid ""
57275717
"Return a copy of the sequence with specified leading and trailing bytes "
5728-
"removed. The *chars* argument is a binary sequence specifying the set of "
5729-
"byte values to be removed - the name refers to the fact this method is "
5730-
"usually used with ASCII characters. If omitted or ``None``, the *chars* "
5731-
"argument defaults to removing ASCII whitespace. The *chars* argument is not "
5732-
"a prefix or suffix; rather, all combinations of its values are stripped::"
5718+
"removed. The *bytes* argument is a binary sequence specifying the set of "
5719+
"byte values to be removed. If omitted or ``None``, the *bytes* argument "
5720+
"defaults to removing ASCII whitespace. The *bytes* argument is not a prefix "
5721+
"or suffix; rather, all combinations of its values are stripped::"
57335722
msgstr ""
5734-
"Returnerar en kopia av sekvensen med angivna inledande och avslutande byte "
5735-
"borttagna. Argumentet *chars* är en binär sekvens som anger den uppsättning "
5736-
"bytevärden som ska tas bort - namnet hänvisar till att denna metod "
5737-
"vanligtvis används med ASCII-tecken. Om argumentet *chars* utelämnas eller "
5738-
"``None``, tas ASCII-teckensnitt bort som standard. Argumentet *chars* är "
5739-
"inte ett prefix eller suffix, utan alla kombinationer av dess värden tas "
5740-
"bort::"
57415723

57425724
msgid ""
57435725
">>> b' spacious '.strip()\n"
@@ -7763,11 +7745,9 @@ msgstr ""
77637745
"``None``."
77647746

77657747
msgid ""
7766-
"Update the dictionary with the key/value pairs from *other*, overwriting "
7767-
"existing keys. Return ``None``."
7748+
"Update the dictionary with the key/value pairs from *mapping* or *iterable* "
7749+
"and *kwargs*, overwriting existing keys. Return ``None``."
77687750
msgstr ""
7769-
"Uppdaterar ordlistan med nyckel/värde-paren från *other* och skriver över "
7770-
"befintliga nycklar. Returnerar ``None``."
77717751

77727752
msgid ""
77737753
":meth:`update` accepts either another object with a ``keys()`` method (in "

license.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-25 14:20+0000\n"
15+
"POT-Creation-Date: 2025-08-27 14:18+0000\n"
1616
"PO-Revision-Date: 2025-08-02 17:35+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)