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

Commit8de2ac7

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

File tree

19 files changed

+162
-188
lines changed

19 files changed

+162
-188
lines changed

‎faq/design.po‎

Lines changed: 3 additions & 3 deletions
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-09-01 14:16+0000\n"
15+
"POT-Creation-Date:2025-09-07 14:14+0000\n"
1616
"PO-Revision-Date:2025-08-02 17:33+0000\n"
1717
"Last-Translator:Daniel Nylander <po@danielnylander.se>, 2025\n"
1818
"Language-Team:Swedish (https://app.transifex.com/python-doc/teams/5390/"
@@ -787,9 +787,9 @@ msgid ""
787787
"An appropriate testing discipline can help build large complex applications "
788788
"in Python as well as having interface specifications would. In fact, it can "
789789
"be better because an interface specification cannot test certain properties "
790-
"of a program. For example, the :meth:`!list.append` method is expected to "
790+
"of a program. For example, the :meth:`list.append` method is expected to "
791791
"add new elements to the end of some internal list; an interface "
792-
"specification cannot test that your :meth:`!list.append` implementation will "
792+
"specification cannot test that your :meth:`list.append` implementation will "
793793
"actually do this correctly, but it's trivial to check this property in a "
794794
"test suite."
795795
msgstr""

‎faq/programming.po‎

Lines changed: 7 additions & 6 deletions
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-09-01 14:16+0000\n"
15+
"POT-Creation-Date:2025-09-07 14:14+0000\n"
1616
"PO-Revision-Date:2025-08-02 17:33+0000\n"
1717
"Last-Translator:Daniel Nylander <po@danielnylander.se>, 2025\n"
1818
"Language-Team:Swedish (https://app.transifex.com/python-doc/teams/5390/"
@@ -599,9 +599,9 @@ msgid ""
599599
msgstr""
600600

601601
msgid""
602-
"After the call to :meth:`!append`, the content of the mutable object has "
603-
"changed from ``[]`` to ``[10]``. Since both the variables refer to the same "
604-
"object, using either name accesses the modified value ``[10]``."
602+
"After the call to :meth:`~sequence.append`, the content of the mutable "
603+
"object haschanged from ``[]`` to ``[10]``. Since both the variables refer "
604+
"to the sameobject, using either name accesses the modified value ``[10]``."
605605
msgstr""
606606

607607
msgid"If we instead assign an immutable object to ``x``::"
@@ -1825,8 +1825,9 @@ msgid ""
18251825
"an :meth:`~object.__iadd__` magic method, it gets called when the ``+=`` "
18261826
"augmented assignment is executed, and its return value is what gets used in "
18271827
"the assignment statement; and (b) for lists, :meth:`!__iadd__` is equivalent "
1828-
"to calling :meth:`!extend` on the list and returning the list. That's why "
1829-
"we say that for lists, ``+=`` is a\"shorthand\" for :meth:`!list.extend`::"
1828+
"to calling :meth:`~sequence.extend` on the list and returning the list. "
1829+
"That's why we say that for lists, ``+=`` is a\"shorthand\" for :meth:`list."
1830+
"extend`::"
18301831
msgstr""
18311832

18321833
msgid""

‎glossary.po‎

Lines changed: 6 additions & 6 deletions
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-09-03 14:18+0000\n"
15+
"POT-Creation-Date:2025-09-07 14:14+0000\n"
1616
"PO-Revision-Date:2025-08-02 17:33+0000\n"
1717
"Last-Translator:Daniel Nylander <po@danielnylander.se>, 2025\n"
1818
"Language-Team:Swedish (https://app.transifex.com/python-doc/teams/5390/"
@@ -1887,11 +1887,11 @@ msgstr ""
18871887
msgid""
18881888
"The :class:`collections.abc.Sequence` abstract base class defines a much "
18891889
"richer interface that goes beyond just :meth:`~object.__getitem__` and :meth:"
1890-
"`~object.__len__`, adding :meth:`!count`, :meth:`!index`, :meth:`~object."
1891-
"__contains__`, and :meth:`~object.__reversed__`. Types that implement this "
1892-
"expanded interface can be registered explicitly using :func:`~abc.ABCMeta."
1893-
"register`. For more documentation on sequence methodsgenerally, see :ref:"
1894-
"`Common Sequence Operations <typesseq-common>`."
1890+
"`~object.__len__`, adding :meth:`~sequence.count`, :meth:`~sequence.index`, :"
1891+
"meth:`~object.__contains__`, and :meth:`~object.__reversed__`. Types that "
1892+
"implement thisexpanded interface can be registered explicitly using :func:"
1893+
"`~abc.ABCMeta.register`. For more documentation on sequence methods "
1894+
"generally, see :ref:`Common Sequence Operations <typesseq-common>`."
18951895
msgstr""
18961896

18971897
msgid"set comprehension"

‎howto/pyporting.po‎

Lines changed: 1 addition & 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-08-17 14:16+0000\n"
15+
"POT-Creation-Date:2025-09-07 14:14+0000\n"
1616
"PO-Revision-Date:2025-08-02 17:33+0000\n"
1717
"Last-Translator:Daniel Nylander <po@danielnylander.se>, 2025\n"
1818
"Language-Team:Swedish (https://app.transifex.com/python-doc/teams/5390/"

‎library/bisect.po‎

Lines changed: 5 additions & 5 deletions
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-09-01 14:16+0000\n"
15+
"POT-Creation-Date:2025-09-07 14:14+0000\n"
1616
"PO-Revision-Date:2025-08-02 17:33+0000\n"
1717
"Last-Translator:Daniel Nylander <po@danielnylander.se>, 2025\n"
1818
"Language-Team:Swedish (https://app.transifex.com/python-doc/teams/5390/"
@@ -105,8 +105,8 @@ msgstr ""
105105

106106
msgid""
107107
"This function first runs :py:func:`~bisect.bisect_left` to locate an "
108-
"insertion point. Next, it runs the :meth:`!insert` method on *a* to insert "
109-
"*x* at the appropriate position to maintain sort order."
108+
"insertion point. Next, it runs the :meth:`~sequence.insert` method on *a* to "
109+
"insert*x* at the appropriate position to maintain sort order."
110110
msgstr""
111111

112112
msgid""
@@ -126,8 +126,8 @@ msgstr ""
126126

127127
msgid""
128128
"This function first runs :py:func:`~bisect.bisect_right` to locate an "
129-
"insertion point. Next, it runs the :meth:`!insert` method on *a* to insert "
130-
"*x* at the appropriate position to maintain sort order."
129+
"insertion point. Next, it runs the :meth:`~sequence.insert` method on *a* to "
130+
"insert*x* at the appropriate position to maintain sort order."
131131
msgstr""
132132

133133
msgid"Performance Notes"

‎library/collections.abc.po‎

Lines changed: 9 additions & 8 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-05 14:17+0000\n"
14+
"POT-Creation-Date:2025-09-07 14:14+0000\n"
1515
"PO-Revision-Date:2025-08-02 17:33+0000\n"
1616
"Last-Translator:Daniel Nylander <po@danielnylander.se>, 2025\n"
1717
"Language-Team:Swedish (https://app.transifex.com/python-doc/teams/5390/"
@@ -445,12 +445,12 @@ msgstr ""
445445

446446
msgid""
447447
"Implementation note: Some of the mixin methods, such as :meth:`~container."
448-
"__iter__`, :meth:`~object.__reversed__` and :meth:`index`, make repeated "
449-
"calls to the underlying :meth:`~object.__getitem__` method. Consequently, "
450-
"if :meth:`~object.__getitem__` is implemented with constant access speed, "
451-
"the mixin methods will have linear performance; however, if the underlying "
452-
"method is linear (as it would be with a linked list), the mixins will have "
453-
"quadratic performance and will likely need to be overridden."
448+
"__iter__`, :meth:`~object.__reversed__`, and :meth:`~sequence.index` make "
449+
"repeatedcalls to the underlying :meth:`~object.__getitem__` method. "
450+
"Consequently,if :meth:`~object.__getitem__` is implemented with constant "
451+
"access speed,the mixin methods will have linear performance; however, if "
452+
"the underlyingmethod is linear (as it would be with a linked list), the "
453+
"mixins will havequadratic performance and will likely need to be overridden."
454454
msgstr""
455455

456456
msgid"Return first index of *value*."
@@ -464,7 +464,8 @@ msgid ""
464464
msgstr""
465465

466466
msgid""
467-
"The :meth:`!index` method added support for *stop* and *start* arguments."
467+
"The :meth:`~sequence.index` method gained support for the *stop* and *start* "
468+
"arguments."
468469
msgstr""
469470

470471
msgid"ABCs for read-only and mutable :ref:`sets <types-set>`."

‎library/collections.po‎

Lines changed: 4 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-09-01 14:16+0000\n"
14+
"POT-Creation-Date:2025-09-07 14:14+0000\n"
1515
"PO-Revision-Date:2025-08-02 17:33+0000\n"
1616
"Last-Translator:Daniel Nylander <po@danielnylander.se>, 2025\n"
1717
"Language-Team:Swedish (https://app.transifex.com/python-doc/teams/5390/"
@@ -885,10 +885,10 @@ msgstr ""
885885
msgid""
886886
"When each key is encountered for the first time, it is not already in the "
887887
"mapping; so an entry is automatically created using the :attr:`~defaultdict."
888-
"default_factory` function which returns an empty :class:`list`. The :meth:`!"
889-
"list.append` operation then attaches the value to the new list. When keys "
888+
"default_factory` function which returns an empty :class:`list`. The :meth:"
889+
"`list.append` operation then attaches the value to the new list. When keys "
890890
"are encountered again, the look-up proceeds normally (returning the list for "
891-
"that key) and the :meth:`!list.append` operation adds another value to the "
891+
"that key) and the :meth:`list.append` operation adds another value to the "
892892
"list. This technique is simpler and faster than an equivalent technique "
893893
"using :meth:`dict.setdefault`:"
894894
msgstr""

‎library/pickle.po‎

Lines changed: 5 additions & 5 deletions
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-09-01 14:16+0000\n"
15+
"POT-Creation-Date:2025-09-07 14:14+0000\n"
1616
"PO-Revision-Date:2025-08-02 17:34+0000\n"
1717
"Last-Translator:Daniel Nylander <po@danielnylander.se>, 2025\n"
1818
"Language-Team:Swedish (https://app.transifex.com/python-doc/teams/5390/"
@@ -856,10 +856,10 @@ msgid ""
856856
"These items will be appended to the object either using ``obj.append(item)`` "
857857
"or, in batch, using ``obj.extend(list_of_items)``. This is primarily used "
858858
"for list subclasses, but may be used by other classes as long as they have :"
859-
"ref:`append and extend methods<typesseq-common>`with the appropriate "
860-
"signature. (Whether :meth:`!append` or :meth:`!extend` is used depends on "
861-
"which pickle protocol version is used as well as the number of items to "
862-
"append, so both must be supported.)"
859+
"meth:`~sequence.append` and:meth:`~sequence.extend` methods with the "
860+
"appropriatesignature. (Whether :meth:`!append` or :meth:`!extend` is used "
861+
"depends onwhich pickle protocol version is used as well as the number of "
862+
"items toappend, so both must be supported.)"
863863
msgstr""
864864

865865
msgid""

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp