@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version :Python 3.14\n "
1313"Report-Msgid-Bugs-To :\n "
14- "POT-Creation-Date :2025-09-16 17:23 +0000\n "
14+ "POT-Creation-Date :2025-10-03 14:13 +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/ "
@@ -278,13 +278,13 @@ msgid "to look up an existing member:"
278278msgstr ""
279279
280280msgid "cls"
281- msgstr ""
281+ msgstr "cls "
282282
283283msgid "The enum class being called."
284284msgstr ""
285285
286286msgid "value"
287- msgstr ""
287+ msgstr "värde "
288288
289289msgid "The value to lookup."
290290msgstr ""
@@ -298,37 +298,37 @@ msgid "The name of the new Enum to create."
298298msgstr ""
299299
300300msgid "names"
301- msgstr ""
301+ msgstr "namn "
302302
303303msgid "The names/values of the members for the new Enum."
304304msgstr ""
305305
306306msgid "module"
307- msgstr ""
307+ msgstr "modul "
308308
309309msgid "The name of the module the new Enum is created in."
310310msgstr ""
311311
312312msgid "qualname"
313- msgstr ""
313+ msgstr "kvalitetsnamn "
314314
315315msgid "The actual location in the module where this Enum can be found."
316316msgstr ""
317317
318318msgid "type"
319- msgstr ""
319+ msgstr "typ "
320320
321321msgid "A mix-in type for the new Enum."
322322msgstr ""
323323
324324msgid "start"
325- msgstr ""
325+ msgstr "börja "
326326
327327msgid "The first integer value for the Enum (used by :class:`auto`)."
328328msgstr ""
329329
330330msgid "boundary"
331- msgstr ""
331+ msgstr "avgränsning "
332332
333333msgid ""
334334"How to handle out-of-range values from bit operations (:class:`Flag` only)."
@@ -462,6 +462,7 @@ msgid ""
462462msgstr ""
463463
464464msgid ""
465+ ">>> from enum import Enum\n"
465466">>> from datetime import date\n"
466467">>> class Weekday(Enum):\n"
467468"... MONDAY = 1\n"
@@ -481,7 +482,7 @@ msgid ""
481482msgstr ""
482483
483484msgid "name"
484- msgstr ""
485+ msgstr "namn "
485486
486487msgid "The name of the member being defined (e.g. 'RED')."
487488msgstr ""
@@ -490,13 +491,13 @@ msgid "The start value for the Enum; the default is 1."
490491msgstr ""
491492
492493msgid "count"
493- msgstr ""
494+ msgstr "antal "
494495
495496msgid "The number of members currently defined, not including this one."
496497msgstr ""
497498
498499msgid "last_values"
499- msgstr ""
500+ msgstr "senaste_värden "
500501
501502msgid "A list of the previous values."
502503msgstr ""
@@ -507,7 +508,7 @@ msgid ""
507508msgstr ""
508509
509510msgid ""
510- ">>> from enum import auto\n"
511+ ">>> from enum import auto, Enum \n"
511512">>> class PowersOfThree(Enum):\n"
512513"... @staticmethod\n"
513514"... def _generate_next_value_(name, start, count, last_values):\n"
@@ -540,7 +541,7 @@ msgid ""
540541msgstr ""
541542
542543msgid ""
543- ">>> from enum import StrEnum\n"
544+ ">>> from enum importauto, StrEnum\n"
544545">>> class Build(StrEnum):\n"
545546"... DEBUG = auto()\n"
546547"... OPTIMIZED = auto()\n"
@@ -579,6 +580,7 @@ msgid ""
579580msgstr ""
580581
581582msgid ""
583+ ">>> from enum import auto, Enum\n"
582584">>> class OtherStyle(Enum):\n"
583585"... ALTERNATE = auto()\n"
584586"... OTHER = auto()\n"
@@ -598,6 +600,7 @@ msgid ""
598600msgstr ""
599601
600602msgid ""
603+ ">>> from enum import auto, Enum\n"
601604">>> class OtherStyle(Enum):\n"
602605"... ALTERNATE = auto()\n"
603606"... OTHER = auto()\n"
@@ -616,6 +619,7 @@ msgid ""
616619msgstr ""
617620
618621msgid ""
622+ ">>> from enum import auto, Enum\n"
619623">>> class OtherStyle(Enum):\n"
620624"... ALTERNATE = auto()\n"
621625"... OTHER = auto()\n"