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

Commit 228e05f

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent 179cdc4 commit 228e05f

File tree

10 files changed

+211
-10
lines changed

10 files changed

+211
-10
lines changed

c-api/concrete.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-11-11 14:15+0000\n"
14+
"POT-Creation-Date: 2025-11-17 14:14+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/"

c-api/picklebuffer.po

Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
# SOME DESCRIPTIVE TITLE.
2+
# Copyright (C) 2001 Python Software Foundation
3+
# This file is distributed under the same license as the Python package.
4+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5+
#
6+
# Translators:
7+
# python-doc bot, 2025
8+
#
9+
#, fuzzy
10+
msgid ""
11+
msgstr ""
12+
"Project-Id-Version: Python 3.14\n"
13+
"Report-Msgid-Bugs-To: \n"
14+
"POT-Creation-Date: 2025-11-17 14:14+0000\n"
15+
"PO-Revision-Date: 2025-11-17 14:16+0000\n"
16+
"Last-Translator: python-doc bot, 2025\n"
17+
"Language-Team: Swedish (https://app.transifex.com/python-doc/teams/5390/"
18+
"sv/)\n"
19+
"MIME-Version: 1.0\n"
20+
"Content-Type: text/plain; charset=UTF-8\n"
21+
"Content-Transfer-Encoding: 8bit\n"
22+
"Language: sv\n"
23+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
24+
25+
msgid "Pickle buffer objects"
26+
msgstr ""
27+
28+
msgid ""
29+
"A :class:`pickle.PickleBuffer` object wraps a :ref:`buffer-providing object "
30+
"<bufferobjects>` for out-of-band data transfer with the :mod:`pickle` module."
31+
msgstr ""
32+
33+
msgid ""
34+
"This instance of :c:type:`PyTypeObject` represents the Python pickle buffer "
35+
"type. This is the same object as :class:`pickle.PickleBuffer` in the Python "
36+
"layer."
37+
msgstr ""
38+
39+
msgid ""
40+
"Return true if *op* is a pickle buffer instance. This function always "
41+
"succeeds."
42+
msgstr ""
43+
44+
msgid "Create a pickle buffer from the object *obj*."
45+
msgstr ""
46+
47+
msgid ""
48+
"This function will fail if *obj* doesn't support the :ref:`buffer protocol "
49+
"<bufferobjects>`."
50+
msgstr ""
51+
52+
msgid ""
53+
"On success, return a new pickle buffer instance. On failure, set an "
54+
"exception and return ``NULL``."
55+
msgstr ""
56+
57+
msgid "Analogous to calling :class:`pickle.PickleBuffer` with *obj* in Python."
58+
msgstr ""
59+
60+
msgid ""
61+
"Get a pointer to the underlying :c:type:`Py_buffer` that the pickle buffer "
62+
"wraps."
63+
msgstr ""
64+
65+
msgid ""
66+
"The returned pointer is valid as long as *picklebuf* is alive and has not "
67+
"been released. The caller must not modify or free the returned :c:type:"
68+
"`Py_buffer`. If the pickle buffer has been released, raise :exc:`ValueError`."
69+
msgstr ""
70+
71+
msgid ""
72+
"On success, return a pointer to the buffer view. On failure, set an "
73+
"exception and return ``NULL``."
74+
msgstr ""
75+
76+
msgid "Release the underlying buffer held by the pickle buffer."
77+
msgstr ""
78+
79+
msgid ""
80+
"Return ``0`` on success. On failure, set an exception and return ``-1``."
81+
msgstr ""
82+
83+
msgid "Analogous to calling :meth:`pickle.PickleBuffer.release` in Python."
84+
msgstr ""
85+
86+
msgid "object"
87+
msgstr ""
88+
89+
msgid "PickleBuffer"
90+
msgstr ""

c-api/structures.po

Lines changed: 83 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-11-15 14:12+0000\n"
14+
"POT-Creation-Date: 2025-11-17 14:14+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/"
@@ -459,6 +459,21 @@ msgid ""
459459
"wrapper object calls."
460460
msgstr ""
461461

462+
msgid ""
463+
"The type object corresponding to Python C method objects. This is available "
464+
"as :class:`types.BuiltinMethodType` in the Python layer."
465+
msgstr ""
466+
467+
msgid ""
468+
"Return true if *op* is an instance of the :c:type:`PyCMethod_Type` type or a "
469+
"subtype of it. This function always succeeds."
470+
msgstr ""
471+
472+
msgid ""
473+
"This is the same as :c:func:`PyCMethod_Check`, but does not account for "
474+
"subtypes."
475+
msgstr ""
476+
462477
msgid ""
463478
"Turn *ml* into a Python :term:`callable` object. The caller must ensure that "
464479
"*ml* outlives the :term:`callable`. Typically, *ml* is defined as a static "
@@ -485,12 +500,79 @@ msgid ""
485500
"function. Must be set if :c:macro:`METH_METHOD` is set on ``ml->ml_flags``."
486501
msgstr ""
487502

503+
msgid ""
504+
"The type object corresponding to Python C function objects. This is "
505+
"available as :class:`types.BuiltinFunctionType` in the Python layer."
506+
msgstr ""
507+
508+
msgid ""
509+
"Return true if *op* is an instance of the :c:type:`PyCFunction_Type` type or "
510+
"a subtype of it. This function always succeeds."
511+
msgstr ""
512+
513+
msgid ""
514+
"This is the same as :c:func:`PyCFunction_Check`, but does not account for "
515+
"subtypes."
516+
msgstr ""
517+
488518
msgid "Equivalent to ``PyCMethod_New(ml, self, module, NULL)``."
489519
msgstr ""
490520

491521
msgid "Equivalent to ``PyCMethod_New(ml, self, NULL, NULL)``."
492522
msgstr ""
493523

524+
msgid ""
525+
"Get the function's flags on *func* as they were passed to :c:member:"
526+
"`~PyMethodDef.ml_flags`."
527+
msgstr ""
528+
529+
msgid ""
530+
"If *func* is not a C function object, this fails with an exception. *func* "
531+
"must not be ``NULL``."
532+
msgstr ""
533+
534+
msgid ""
535+
"This function returns the function's flags on success, and ``-1`` with an "
536+
"exception set on failure."
537+
msgstr ""
538+
539+
msgid ""
540+
"This is the same as :c:func:`PyCFunction_GetFlags`, but without error or "
541+
"type checking."
542+
msgstr ""
543+
544+
msgid ""
545+
"Get the function pointer on *func* as it was passed to :c:member:"
546+
"`~PyMethodDef.ml_meth`."
547+
msgstr ""
548+
549+
msgid ""
550+
"This function returns the function pointer on success, and ``NULL`` with an "
551+
"exception set on failure."
552+
msgstr ""
553+
554+
msgid ""
555+
"This is the same as :c:func:`PyCFunction_GetFunction`, but without error or "
556+
"type checking."
557+
msgstr ""
558+
559+
msgid ""
560+
"Get the \"self\" object on *func*. This is the object that would be passed "
561+
"to the first argument of a :c:type:`PyCFunction`. For C function objects "
562+
"created through a :c:type:`PyMethodDef` on a :c:type:`PyModuleDef`, this is "
563+
"the resulting module object."
564+
msgstr ""
565+
566+
msgid ""
567+
"This function returns a :term:`borrowed reference` to the \"self\" object on "
568+
"success, and ``NULL`` with an exception set on failure."
569+
msgstr ""
570+
571+
msgid ""
572+
"This is the same as :c:func:`PyCFunction_GetSelf`, but without error or type "
573+
"checking."
574+
msgstr ""
575+
494576
msgid "Accessing attributes of extension types"
495577
msgstr ""
496578

deprecations/pending-removal-in-3.14.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-27 14:15+0000\n"
14+
"POT-Creation-Date: 2025-11-15 14:12+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/"

library/concurrent.futures.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-27 14:15+0000\n"
14+
"POT-Creation-Date: 2025-11-15 14:12+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/html.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-27 14:15+0000\n"
14+
"POT-Creation-Date: 2025-11-15 14:12+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/inspect.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-27 14:15+0000\n"
14+
"POT-Creation-Date: 2025-11-15 14:12+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/xml.sax.utils.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-11-15 14:12+0000\n"
14+
"POT-Creation-Date: 2025-11-17 14:14+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/"
@@ -56,7 +56,7 @@ msgstr ""
5656
msgid ""
5757
"You can unescape other strings of data by passing a dictionary as the "
5858
"optional *entities* parameter. The keys and values must all be strings; "
59-
"each key will be replaced with its corresponding value. ``'&amp'``, "
59+
"each key will be replaced with its corresponding value. ``'&amp;'``, "
6060
"``'&lt;'``, and ``'&gt;'`` are always unescaped, even if *entities* is "
6161
"provided."
6262
msgstr ""

whatsnew/3.5.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-27 14:15+0000\n"
14+
"POT-Creation-Date: 2025-11-15 14:12+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/"

whatsnew/changelog.po

Lines changed: 30 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-11-15 14:12+0000\n"
15+
"POT-Creation-Date: 2025-11-17 14:14+0000\n"
1616
"PO-Revision-Date: 2025-09-16 00:02+0000\n"
1717
"Last-Translator: Daniel Nylander <po@danielnylander.se>, 2025\n"
1818
"Language-Team: Swedish (https://app.transifex.com/python-doc/teams/5390/"
@@ -131,6 +131,13 @@ msgid ""
131131
"assume that threads are always available in Tcl 9 and later."
132132
msgstr ""
133133

134+
msgid ""
135+
":gh:`137109`: The :mod:`os.fork` and related forking APIs will no longer "
136+
"warn in the common case where Linux or macOS platform APIs return the number "
137+
"of threads in a process and find the answer to be 1 even when a :func:`os."
138+
"register_at_fork` ``after_in_parent=`` callback (re)starts a thread."
139+
msgstr ""
140+
134141
msgid ""
135142
":gh:`141314`: Fix assertion failure in :meth:`io.TextIOWrapper.tell` when "
136143
"reading files with standalone carriage return (``\\r``) line endings."
@@ -159,6 +166,11 @@ msgid ""
159166
"segmentation fault. Use non-capturing groups (?:...) instead."
160167
msgstr ""
161168

169+
msgid ""
170+
":gh:`125115`: Refactor the :mod:`pdb` parsing issue so positional arguments "
171+
"can pass through intuitively."
172+
msgstr ""
173+
162174
msgid ""
163175
":gh:`140815`: :mod:`faulthandler` now detects if a frame or a code object is "
164176
"invalid or freed. Patch by Victor Stinner."
@@ -580,6 +592,11 @@ msgstr ""
580592
msgid ":gh:`136507`: Fix mimetypes CLI to handle multiple file parameters."
581593
msgstr ""
582594

595+
msgid ""
596+
":gh:`136057`: Fixed the bug in :mod:`pdb` and :mod:`bdb` where ``next`` and "
597+
"``step`` can't go over the line if a loop exists in the line."
598+
msgstr ""
599+
583600
msgid ""
584601
":gh:`135386`: Fix opening a :mod:`dbm.sqlite3` database for reading from "
585602
"read-only file or directory."
@@ -691,6 +708,18 @@ msgid ""
691708
"section."
692709
msgstr ""
693710

711+
msgid ""
712+
":gh:`141528`: Suggest using :meth:`concurrent.interpreters.Interpreter."
713+
"close` instead of the private ``_interpreters.destroy`` function when "
714+
"warning about remaining subinterpreters. Patch by Sergey Miryanov."
715+
msgstr ""
716+
717+
msgid ""
718+
":gh:`141312`: Fix the assertion failure in the ``__setstate__`` method of "
719+
"the range iterator when a non-integer argument is passed. Patch by Sergey "
720+
"Miryanov."
721+
msgstr ""
722+
694723
msgid ""
695724
":gh:`140939`: Fix memory leak when :class:`bytearray` or :class:`bytes` is "
696725
"formated with the ``%*b`` format with a large width that results in a :exc:"

0 commit comments

Comments
 (0)