Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitbe18972

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent6f9638a commitbe18972

File tree

2 files changed

+21
-17
lines changed

2 files changed

+21
-17
lines changed

‎library/enum.po‎

Lines changed: 18 additions & 14 deletions
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-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:"
278278
msgstr""
279279

280280
msgid"cls"
281-
msgstr""
281+
msgstr"cls"
282282

283283
msgid"The enum class being called."
284284
msgstr""
285285

286286
msgid"value"
287-
msgstr""
287+
msgstr"värde"
288288

289289
msgid"The value to lookup."
290290
msgstr""
@@ -298,37 +298,37 @@ msgid "The name of the new Enum to create."
298298
msgstr""
299299

300300
msgid"names"
301-
msgstr""
301+
msgstr"namn"
302302

303303
msgid"The names/values of the members for the new Enum."
304304
msgstr""
305305

306306
msgid"module"
307-
msgstr""
307+
msgstr"modul"
308308

309309
msgid"The name of the module the new Enum is created in."
310310
msgstr""
311311

312312
msgid"qualname"
313-
msgstr""
313+
msgstr"kvalitetsnamn"
314314

315315
msgid"The actual location in the module where this Enum can be found."
316316
msgstr""
317317

318318
msgid"type"
319-
msgstr""
319+
msgstr"typ"
320320

321321
msgid"A mix-in type for the new Enum."
322322
msgstr""
323323

324324
msgid"start"
325-
msgstr""
325+
msgstr"börja"
326326

327327
msgid"The first integer value for the Enum (used by :class:`auto`)."
328328
msgstr""
329329

330330
msgid"boundary"
331-
msgstr""
331+
msgstr"avgränsning"
332332

333333
msgid""
334334
"How to handle out-of-range values from bit operations (:class:`Flag` only)."
@@ -462,6 +462,7 @@ msgid ""
462462
msgstr""
463463

464464
msgid""
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 ""
481482
msgstr""
482483

483484
msgid"name"
484-
msgstr""
485+
msgstr"namn"
485486

486487
msgid"The name of the member being defined (e.g. 'RED')."
487488
msgstr""
@@ -490,13 +491,13 @@ msgid "The start value for the Enum; the default is 1."
490491
msgstr""
491492

492493
msgid"count"
493-
msgstr""
494+
msgstr"antal"
494495

495496
msgid"The number of members currently defined, not including this one."
496497
msgstr""
497498

498499
msgid"last_values"
499-
msgstr""
500+
msgstr"senaste_värden"
500501

501502
msgid"A list of the previous values."
502503
msgstr""
@@ -507,7 +508,7 @@ msgid ""
507508
msgstr""
508509

509510
msgid""
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 ""
540541
msgstr""
541542

542543
msgid""
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 ""
579580
msgstr""
580581

581582
msgid""
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 ""
598600
msgstr""
599601

600602
msgid""
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 ""
616619
msgstr""
617620

618621
msgid""
622+
">>> from enum import auto, Enum\n"
619623
">>> class OtherStyle(Enum):\n"
620624
"... ALTERNATE = auto()\n"
621625
"... OTHER = auto()\n"

‎library/hashlib.po‎

Lines changed: 3 additions & 3 deletions
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-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/"
@@ -285,8 +285,8 @@ msgid "Example:"
285285
msgstr""
286286

287287
msgid""
288-
"Now raises a :exc:`BlockingIOError` if the file is opened in blocking mode. "
289-
"Previously, spurious null bytes were added to the digest."
288+
"Now raises a :exc:`BlockingIOError` if the file is opened innon-blocking "
289+
"mode.Previously, spurious null bytes were added to the digest."
290290
msgstr""
291291

292292
msgid"Key derivation"

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp