🌐 AI搜索 & 代理 主页
Skip to content

Commit 0da22e1

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent 5a0a286 commit 0da22e1

File tree

12 files changed

+109
-45
lines changed

12 files changed

+109
-45
lines changed

bugs.po

Lines changed: 7 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-10-11 14:13+0000\n"
15+
"POT-Creation-Date: 2025-10-21 14:16+0000\n"
1616
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1717
"Last-Translator: Daniel Nylander <po@danielnylander.se>, 2025\n"
1818
"Language-Team: Swedish (https://app.transifex.com/python-doc/teams/5390/"
@@ -48,6 +48,12 @@ msgid ""
4848
"well."
4949
msgstr ""
5050

51+
msgid ""
52+
"If the bug or suggested improvement concerns the translation of this "
53+
"documentation, submit the report to the `translation’s repository "
54+
"<TRANSLATION_REPO_>`_ instead."
55+
msgstr ""
56+
5157
msgid ""
5258
"You can also open a discussion item on our `Documentation Discourse forum "
5359
"<https://discuss.python.org/c/documentation/26>`_."

faq/general.po

Lines changed: 2 additions & 2 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-10-05 14:11+0000\n"
14+
"POT-Creation-Date: 2025-10-21 14:16+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Swedish (https://app.transifex.com/python-doc/teams/5390/"
@@ -261,7 +261,7 @@ msgstr ""
261261

262262
msgid ""
263263
"The standard documentation for the current stable version of Python is "
264-
"available at https://docs.python.org/3/. PDF, plain text, and downloadable "
264+
"available at https://docs.python.org/3/. EPUB, plain text, and downloadable "
265265
"HTML versions are also available at https://docs.python.org/3/download.html."
266266
msgstr ""
267267

library/dis.po

Lines changed: 1 addition & 1 deletion
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-10-01 14:15+0000\n"
14+
"POT-Creation-Date: 2025-10-21 14:16+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/"

library/gc.po

Lines changed: 1 addition & 1 deletion
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-29 14:15+0000\n"
14+
"POT-Creation-Date: 2025-10-19 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/"

library/glob.po

Lines changed: 14 additions & 10 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-10-05 14:11+0000\n"
14+
"POT-Creation-Date: 2025-10-21 14:16+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/"
@@ -29,27 +29,31 @@ msgid "**Source code:** :source:`Lib/glob.py`"
2929
msgstr ""
3030

3131
msgid ""
32-
"The :mod:`glob` module finds all the pathnames matching a specified pattern "
33-
"according to the rules used by the Unix shell, although results are returned "
34-
"in arbitrary order. No tilde expansion is done, but ``*``, ``?``, and "
32+
"The :mod:`!glob` module finds pathnames using pattern matching rules similar "
33+
"to the Unix shell. No tilde expansion is done, but ``*``, ``?``, and "
3534
"character ranges expressed with ``[]`` will be correctly matched. This is "
3635
"done by using the :func:`os.scandir` and :func:`fnmatch.fnmatch` functions "
3736
"in concert, and not by actually invoking a subshell."
3837
msgstr ""
3938

4039
msgid ""
41-
"Note that files beginning with a dot (``.``) can only be matched by patterns "
42-
"that also start with a dot, unlike :func:`fnmatch.fnmatch` or :func:`pathlib."
43-
"Path.glob`. (For tilde and shell variable expansion, use :func:`os.path."
44-
"expanduser` and :func:`os.path.expandvars`.)"
40+
"The pathnames are returned in no particular order. If you need a specific "
41+
"order, sort the results."
42+
msgstr ""
43+
44+
msgid ""
45+
"Files beginning with a dot (``.``) can only be matched by patterns that also "
46+
"start with a dot, unlike :func:`fnmatch.fnmatch` or :func:`pathlib.Path."
47+
"glob`. For tilde and shell variable expansion, use :func:`os.path."
48+
"expanduser` and :func:`os.path.expandvars`."
4549
msgstr ""
4650

4751
msgid ""
4852
"For a literal match, wrap the meta-characters in brackets. For example, "
4953
"``'[?]'`` matches the character ``'?'``."
5054
msgstr ""
5155

52-
msgid "The :mod:`glob` module defines the following functions:"
56+
msgid "The :mod:`!glob` module defines the following functions:"
5357
msgstr ""
5458

5559
msgid ""
@@ -66,7 +70,7 @@ msgstr ""
6670
msgid ""
6771
"If *root_dir* is not ``None``, it should be a :term:`path-like object` "
6872
"specifying the root directory for searching. It has the same effect on :"
69-
"func:`glob` as changing the current directory before calling it. If "
73+
"func:`!glob` as changing the current directory before calling it. If "
7074
"*pathname* is relative, the result will contain paths relative to *root_dir*."
7175
msgstr ""
7276

library/resource.po

Lines changed: 22 additions & 21 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-10-09 14:15+0000\n"
14+
"POT-Creation-Date: 2025-10-21 14:16+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/"
@@ -154,9 +154,10 @@ msgstr ""
154154

155155
msgid ""
156156
"The maximum amount of processor time (in seconds) that a process can use. If "
157-
"this limit is exceeded, a :const:`SIGXCPU` signal is sent to the process. "
158-
"(See the :mod:`signal` module documentation for information about how to "
159-
"catch this signal and do something useful, e.g. flush open files to disk.)"
157+
"this limit is exceeded, a :const:`~signal.SIGXCPU` signal is sent to the "
158+
"process. (See the :mod:`signal` module documentation for information about "
159+
"how to catch this signal and do something useful, e.g. flush open files to "
160+
"disk.)"
160161
msgstr ""
161162

162163
msgid "The maximum size of a file which the process may create."
@@ -277,7 +278,7 @@ msgid ""
277278
msgstr ""
278279

279280
msgid ""
280-
"The fields :attr:`ru_utime` and :attr:`ru_stime` of the return value are "
281+
"The fields :attr:`!ru_utime` and :attr:`!ru_stime` of the return value are "
281282
"floating-point values representing the amount of time spent executing in "
282283
"user mode and the amount of time spent executing in system mode, "
283284
"respectively. The remaining values are integers. Consult the :manpage:"
@@ -297,7 +298,7 @@ msgstr ""
297298
msgid "``0``"
298299
msgstr ""
299300

300-
msgid ":attr:`ru_utime`"
301+
msgid ":attr:`!ru_utime`"
301302
msgstr ""
302303

303304
msgid "time in user mode (float seconds)"
@@ -306,7 +307,7 @@ msgstr ""
306307
msgid "``1``"
307308
msgstr ""
308309

309-
msgid ":attr:`ru_stime`"
310+
msgid ":attr:`!ru_stime`"
310311
msgstr ""
311312

312313
msgid "time in system mode (float seconds)"
@@ -315,7 +316,7 @@ msgstr ""
315316
msgid "``2``"
316317
msgstr ""
317318

318-
msgid ":attr:`ru_maxrss`"
319+
msgid ":attr:`!ru_maxrss`"
319320
msgstr ""
320321

321322
msgid "maximum resident set size"
@@ -324,7 +325,7 @@ msgstr ""
324325
msgid "``3``"
325326
msgstr ""
326327

327-
msgid ":attr:`ru_ixrss`"
328+
msgid ":attr:`!ru_ixrss`"
328329
msgstr ""
329330

330331
msgid "shared memory size"
@@ -333,7 +334,7 @@ msgstr ""
333334
msgid "``4``"
334335
msgstr ""
335336

336-
msgid ":attr:`ru_idrss`"
337+
msgid ":attr:`!ru_idrss`"
337338
msgstr ""
338339

339340
msgid "unshared memory size"
@@ -342,7 +343,7 @@ msgstr ""
342343
msgid "``5``"
343344
msgstr ""
344345

345-
msgid ":attr:`ru_isrss`"
346+
msgid ":attr:`!ru_isrss`"
346347
msgstr ""
347348

348349
msgid "unshared stack size"
@@ -351,7 +352,7 @@ msgstr ""
351352
msgid "``6``"
352353
msgstr ""
353354

354-
msgid ":attr:`ru_minflt`"
355+
msgid ":attr:`!ru_minflt`"
355356
msgstr ""
356357

357358
msgid "page faults not requiring I/O"
@@ -360,7 +361,7 @@ msgstr ""
360361
msgid "``7``"
361362
msgstr ""
362363

363-
msgid ":attr:`ru_majflt`"
364+
msgid ":attr:`!ru_majflt`"
364365
msgstr ""
365366

366367
msgid "page faults requiring I/O"
@@ -369,7 +370,7 @@ msgstr ""
369370
msgid "``8``"
370371
msgstr ""
371372

372-
msgid ":attr:`ru_nswap`"
373+
msgid ":attr:`!ru_nswap`"
373374
msgstr ""
374375

375376
msgid "number of swap outs"
@@ -378,7 +379,7 @@ msgstr ""
378379
msgid "``9``"
379380
msgstr ""
380381

381-
msgid ":attr:`ru_inblock`"
382+
msgid ":attr:`!ru_inblock`"
382383
msgstr ""
383384

384385
msgid "block input operations"
@@ -387,7 +388,7 @@ msgstr ""
387388
msgid "``10``"
388389
msgstr ""
389390

390-
msgid ":attr:`ru_oublock`"
391+
msgid ":attr:`!ru_oublock`"
391392
msgstr ""
392393

393394
msgid "block output operations"
@@ -396,7 +397,7 @@ msgstr ""
396397
msgid "``11``"
397398
msgstr ""
398399

399-
msgid ":attr:`ru_msgsnd`"
400+
msgid ":attr:`!ru_msgsnd`"
400401
msgstr ""
401402

402403
msgid "messages sent"
@@ -405,7 +406,7 @@ msgstr ""
405406
msgid "``12``"
406407
msgstr ""
407408

408-
msgid ":attr:`ru_msgrcv`"
409+
msgid ":attr:`!ru_msgrcv`"
409410
msgstr ""
410411

411412
msgid "messages received"
@@ -414,7 +415,7 @@ msgstr ""
414415
msgid "``13``"
415416
msgstr ""
416417

417-
msgid ":attr:`ru_nsignals`"
418+
msgid ":attr:`!ru_nsignals`"
418419
msgstr ""
419420

420421
msgid "signals received"
@@ -423,7 +424,7 @@ msgstr ""
423424
msgid "``14``"
424425
msgstr ""
425426

426-
msgid ":attr:`ru_nvcsw`"
427+
msgid ":attr:`!ru_nvcsw`"
427428
msgstr ""
428429

429430
msgid "voluntary context switches"
@@ -432,7 +433,7 @@ msgstr ""
432433
msgid "``15``"
433434
msgstr ""
434435

435-
msgid ":attr:`ru_nivcsw`"
436+
msgid ":attr:`!ru_nivcsw`"
436437
msgstr ""
437438

438439
msgid "involuntary context switches"

library/signal.po

Lines changed: 4 additions & 1 deletion
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-10-13 14:15+0000\n"
14+
"POT-Creation-Date: 2025-10-21 14:16+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/"
@@ -249,6 +249,9 @@ msgstr ""
249249
msgid "Window resize signal."
250250
msgstr ""
251251

252+
msgid "CPU time limit exceeded."
253+
msgstr ""
254+
252255
msgid ""
253256
"All the signal numbers are defined symbolically. For example, the hangup "
254257
"signal is defined as :const:`signal.SIGHUP`; the variable names are "

library/typing.po

Lines changed: 5 additions & 4 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-10-11 14:13+0000\n"
14+
"POT-Creation-Date: 2025-10-21 14:16+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:02+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Swedish (https://app.transifex.com/python-doc/teams/5390/"
@@ -3984,9 +3984,10 @@ msgid ""
39843984
msgstr ""
39853985

39863986
msgid ""
3987-
"The function recursively replaces all occurrences of ``Annotated[T, ...]`` "
3988-
"with ``T``, unless *include_extras* is set to ``True`` (see :class:"
3989-
"`Annotated` for more information)."
3987+
"The function recursively replaces all occurrences of ``Annotated[T, ...]``, "
3988+
"``Required[T]``, ``NotRequired[T]``, and ``ReadOnly[T]`` with ``T``, unless "
3989+
"*include_extras* is set to ``True`` (see :class:`Annotated` for more "
3990+
"information)."
39903991
msgstr ""
39913992

39923993
msgid ""

reference/datamodel.po

Lines changed: 10 additions & 1 deletion
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-10-09 14:15+0000\n"
14+
"POT-Creation-Date: 2025-10-21 14:16+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:02+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Swedish (https://app.transifex.com/python-doc/teams/5390/"
@@ -1159,6 +1159,12 @@ msgid ""
11591159
"``(A, B, C)``."
11601160
msgstr ""
11611161

1162+
msgid ""
1163+
"The single base class in the inheritance chain that is responsible for the "
1164+
"memory layout of instances. This attribute corresponds to :c:member:"
1165+
"`~PyTypeObject.tp_base` at the C level."
1166+
msgstr ""
1167+
11621168
msgid ""
11631169
"The class's documentation string, or ``None`` if undefined. Not inherited by "
11641170
"subclasses."
@@ -4253,6 +4259,9 @@ msgstr ""
42534259
msgid "__bases__ (class attribute)"
42544260
msgstr ""
42554261

4262+
msgid "__base__ (class attribute)"
4263+
msgstr ""
4264+
42564265
msgid "__doc__ (class attribute)"
42574266
msgstr ""
42584267

using/ios.po

Lines changed: 1 addition & 1 deletion
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-10-01 14:15+0000\n"
14+
"POT-Creation-Date: 2025-10-21 14:16+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:02+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Swedish (https://app.transifex.com/python-doc/teams/5390/"

0 commit comments

Comments
 (0)