Skip to content

Commit a7fde1e

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent eb1d0aa commit a7fde1e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+1334
-1321
lines changed

c-api/structures.po

Lines changed: 5 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-31 14:14+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/"
@@ -402,10 +402,10 @@ msgid ""
402402
" PyObject *kwnames)"
403403
msgstr ""
404404
"PyObject *PyCMethod(PyObject *self,\n"
405-
" PyTypeObject *definierande_klass,\n"
406-
" PyObject *konst *args,\n"
405+
" PyTypeObject *defining_class,\n"
406+
" PyObject *const *args,\n"
407407
" Py_ssize_t nargs,\n"
408-
" PyObject *kwnamn)"
408+
" PyObject *kwnames)"
409409

410410
msgid ""
411411
"Structure used to describe a method of an extension type. This structure "
@@ -1135,7 +1135,7 @@ msgid "built-in function"
11351135
msgstr "inbyggd funktion"
11361136

11371137
msgid "classmethod"
1138-
msgstr "klassmetod"
1138+
msgstr "classmethod"
11391139

11401140
msgid "staticmethod"
11411141
msgstr "statisk metod"

c-api/typeobj.po

Lines changed: 2 additions & 2 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-27 14:18+0000\n"
15+
"POT-Creation-Date: 2025-08-31 14:14+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/"
@@ -2516,7 +2516,7 @@ msgid ""
25162516
msgstr ""
25172517
"Använd inte denna flagga för att inte tillåta instansiering av en klass "
25182518
"direkt men tillåta instansiering av dess underklasser (t.ex. för en :term:"
2519-
"`abstrakt basklass`). Gör istället så att :c:member:`~PyTypeObject.tp_new` "
2519+
"`abstract base class`). Gör istället så att :c:member:`~PyTypeObject.tp_new` "
25202520
"bara lyckas för underklasser."
25212521

25222522
msgid ""

faq/design.po

Lines changed: 13 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-23 14:15+0000\n"
15+
"POT-Creation-Date: 2025-08-31 14:14+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/"
@@ -556,14 +556,14 @@ msgid ""
556556
" method = getattr(self, method_name)\n"
557557
" method()"
558558
msgstr ""
559-
"klass MyVisitor:\n"
559+
"class MyVisitor:\n"
560560
" def visit_a(self):\n"
561561
" ...\n"
562562
"\n"
563-
" def dispatch(self, värde):\n"
564-
" method_name = 'visit_' + str(värde)\n"
563+
" def dispatch(self, value):\n"
564+
" method_name = 'visit_' + str(value)\n"
565565
" method = getattr(self, method_name)\n"
566-
" metod()"
566+
" method()"
567567

568568
msgid ""
569569
"It's suggested that you use a prefix for the method names, such as "
@@ -1040,7 +1040,7 @@ msgid ""
10401040
" result = (result % 7777777) + i * 333\n"
10411041
" return result"
10421042
msgstr ""
1043-
"klass ListWrapper:\n"
1043+
"class ListWrapper:\n"
10441044
" def __init__(self, the_list):\n"
10451045
" self.the_list = the_list\n"
10461046
"\n"
@@ -1049,13 +1049,13 @@ msgstr ""
10491049
"\n"
10501050
" def __hash__(self):\n"
10511051
" l = self.the_list\n"
1052-
" resultat = 98767 - len(l)*555\n"
1053-
" för i, el i enumerate(l):\n"
1054-
" försök:\n"
1055-
" resultat = resultat + (hash(el) % 9999999) * 1001 + i\n"
1056-
" utom Undantag:\n"
1057-
" resultat = (resultat % 7777777) + i * 333\n"
1058-
" returnera resultat"
1052+
" result = 98767 - len(l)*555\n"
1053+
" for i, el in enumerate(l):\n"
1054+
" try:\n"
1055+
" result = result + (hash(el) % 9999999) * 1001 + i\n"
1056+
" except Exception:\n"
1057+
" result = (result % 7777777) + i * 333\n"
1058+
" return result"
10591059

10601060
msgid ""
10611061
"Note that the hash computation is complicated by the possibility that some "

0 commit comments

Comments
 (0)