Skip to content

Commit 39eb599

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent b1df88d commit 39eb599

File tree

11 files changed

+18
-19
lines changed

11 files changed

+18
-19
lines changed

c-api/contextvars.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ msgid ""
6060
"The C structure used to represent a :class:`contextvars.Context` object."
6161
msgstr ""
6262
"Den C-struktur som används för att representera ett :class:`contextvars."
63-
"Context`-objekt."
63+
"Context`\\-objekt."
6464

6565
msgid ""
6666
"The C structure used to represent a :class:`contextvars.ContextVar` object."

c-api/init.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2264,7 +2264,7 @@ msgid ""
22642264
"`attached <attached thread state>` to any thread. *tstate* must have been "
22652265
"reset with a previous call to :c:func:`PyThreadState_Clear`."
22662266
msgstr ""
2267-
"Förstör ett :term:`thread state`-objekt. *tstate* bör inte vara :term:"
2267+
"Förstör ett :term:`thread state`\\-objekt. *tstate* bör inte vara :term:"
22682268
"`attached <attached thread state>` till någon tråd. *tstate* måste ha "
22692269
"återställts med ett tidigare anrop till :c:func:`PyThreadState_Clear`."
22702270

@@ -3767,8 +3767,8 @@ msgid ""
37673767
" Py_RETURN_NONE;\n"
37683768
"}"
37693769
msgstr ""
3770-
"statiskt PyObject *\n"
3771-
"set_field(MyObject *self, PyObject *värde)\n"
3770+
"static PyObject *\n"
3771+
"set_field(MyObject *self, PyObject *value)\n"
37723772
"{\n"
37733773
" Py_BEGIN_CRITICAL_SECTION(self);\n"
37743774
" Py_SETREF(self->field, Py_XNewRef(value));\n"

c-api/init_config.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2019,8 +2019,8 @@ msgid ""
20192019
":term:`Filesystem error handler <filesystem encoding and error handler>`: :"
20202020
"func:`sys.getfilesystemencodeerrors`."
20212021
msgstr ""
2022-
":term:`Filsystemfelhanterare <filesystem encoding and error handler>`: :func:"
2023-
"`sys.getfilesystemencodeerrors`."
2022+
":term:`Filsystemsfelhanterare <filesystem encoding and error handler>`: :"
2023+
"func:`sys.getfilesystemencodeerrors`."
20242024

20252025
msgid ""
20262026
"On Windows: use ``\"surrogatepass\"`` by default, or ``\"replace\"`` if :c:"

c-api/refcounting.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ msgid ""
158158
"The object *o* must not be ``NULL``; use :c:func:`Py_XNewRef` if *o* can be "
159159
"``NULL``."
160160
msgstr ""
161-
"Objektet *o* får inte vara ``NULL``; använd :c:func:`Py_XNewRef`` om *o* kan "
161+
"Objektet *o* får inte vara ``NULL``; använd :c:func:`Py_XNewRef` om *o* kan "
162162
"vara ``NULL``."
163163

164164
msgid "For example::"

c-api/sys.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,7 @@ msgid ""
571571
msgstr ""
572572
"Se :pep:`578` för en detaljerad beskrivning av auditering. Funktioner i "
573573
"runtime och standardbiblioteket som skapar händelser listas i :ref:`audit "
574-
"events table <audit-events>``. Detaljer finns i dokumentationen för varje "
574+
"events table <audit-events>`. Detaljer finns i dokumentationen för varje "
575575
"funktion."
576576

577577
msgid ""

c-api/typeobj.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3230,7 +3230,7 @@ msgid ""
32303230
msgstr ""
32313231
"En valfri pekare till en funktion som returnerar en :term:`iterator` för "
32323232
"objektet. Dess närvaro signalerar normalt att instanser av denna typ är :"
3233-
"term:`iterabla` (även om sekvenser kan vara iterabla utan denna funktion)."
3233+
"term:`iterable` (även om sekvenser kan vara iterabla utan denna funktion)."
32343234

32353235
msgid "This function has the same signature as :c:func:`PyObject_GetIter`::"
32363236
msgstr "Denna funktion har samma signatur som :c:func:`PyObject_GetIter`::"
@@ -3984,7 +3984,7 @@ msgid ""
39843984
msgstr ""
39853985
"Om finalizer-funktionen anropades och finalizer gjorde objektet nåbart (dvs. "
39863986
"det finns en referens till objektet och det är inte medlem i ett :term:"
3987-
"`cykliskt isolat`), sägs finalizer ha *återuppväckt* objektet. Det är "
3987+
"`cyclic isolate`), sägs finalizer ha *återuppväckt* objektet. Det är "
39883988
"ospecificerat om finalizern också kan återuppliva objektet genom att lägga "
39893989
"till en ny referens till objektet som inte gör det nåbart, dvs. objektet är "
39903990
"(fortfarande) medlem i ett cykliskt isolat."
@@ -4860,7 +4860,7 @@ msgstr ""
48604860
"`~PyVarObject.ob_size` initialiseras till *nitems* och längden på det "
48614861
"allokerade minnesblocket blir ``tp_basicsize + nitems*tp_itemsize``, "
48624862
"avrundat uppåt till en multipel av ``sizeof(void*)``; annars används inte "
4863-
"*nitems* och längden på blocket blir :c:member:`~PyTypeObject.tp_basicsize``."
4863+
"*nitems* och längden på blocket blir :c:member:`~PyTypeObject.tp_basicsize`."
48644864

48654865
msgid ""
48664866
"This function should not do any other instance initialization, not even to "

c-api/unicode.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1289,7 +1289,7 @@ msgid ""
12891289
"The :term:`filesystem error handler <filesystem encoding and error handler>` "
12901290
"is now used."
12911291
msgstr ""
1292-
"Nu används :term:`filsystem error handler <filesystem encoding and error "
1292+
"Nu används :term:`filsystemsfelhanterare <filesystem encoding and error "
12931293
"handler>`."
12941294

12951295
msgid ""

extending/extending.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -963,8 +963,8 @@ msgstr ""
963963
"Om du deklarerar en global variabel eller en lokal statisk variabel kan "
964964
"modulen få oavsiktliga bieffekter vid ominitialisering, till exempel när du "
965965
"tar bort poster från ``sys.modules`` eller importerar kompilerade moduler "
966-
"till flera tolkar inom en process (eller efter en :c:func:`fork`` utan en "
967-
"mellanliggande :c:func:`exec``). Om modultillståndet ännu inte är helt :ref:"
966+
"till flera tolkar inom en process (eller efter en :c:func:`fork` utan en "
967+
"mellanliggande :c:func:`exec`). Om modultillståndet ännu inte är helt :ref:"
968968
"`isolerat <isolating-extensions-howto>`, bör författare överväga att markera "
969969
"modulen som att den inte har stöd för undertolkare (via :c:macro:"
970970
"`Py_MOD_MULTIPLE_INTERPRETERS_NOT_SUPPORTED`)."

glossary.po

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -656,8 +656,7 @@ msgstr ""
656656
msgid ""
657657
"A :class:`contextvars.Context` object. Also see :term:`current context`."
658658
msgstr ""
659-
"Ett :class:`contextvars.Context`-objekt. Se även :term:`aktuellt "
660-
"sammanhang`."
659+
"Ett :class:`contextvars.Context`\\-objekt. Se även :term:`current context`."
661660

662661
msgid "context management protocol"
663662
msgstr "protokoll för kontexthantering"

library/os.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ msgid ""
202202
"Use UTF-8 as the :term:`filesystem encoding <filesystem encoding and error "
203203
"handler>`."
204204
msgstr ""
205-
"Använd UTF-8 som :term:`filsystemkodning <filesystem encoding and error "
205+
"Använd UTF-8 som :term:`filsystemskodning <filesystem encoding and error "
206206
"handler>`."
207207

208208
msgid ":func:`sys.getfilesystemencoding` returns ``'utf-8'``."

0 commit comments

Comments
 (0)