Skip to content

Commit f6acf03

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent 719cd02 commit f6acf03

22 files changed

+237
-248
lines changed

README.en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ f'''![build](https://github.com/python/python-docs-pl/actions/workflows/update-l
1313
![{translators} Translators](https://img.shields.io/badge/Translators-{translators}-0.svg)''')
1414
]]] -->
1515
![build](https://github.com/python/python-docs-pl/actions/workflows/update-lint-and-build.yml/badge.svg)
16-
![Total Translation of Documentation](https://img.shields.io/badge/Total-4.825%25-0.svg)
16+
![Total Translation of Documentation](https://img.shields.io/badge/Total-4.797%25-0.svg)
1717
![4 Translators](https://img.shields.io/badge/Translators-4-0.svg)
1818
<!-- [[[end]]] -->
1919

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ f'''![build](https://github.com/python/python-docs-pl/actions/workflows/update-l
1313
![{translators} tłumaczy](https://img.shields.io/badge/tłumaczy-{translators}-0.svg)''')
1414
]]] -->
1515
![build](https://github.com/python/python-docs-pl/actions/workflows/update-lint-and-build.yml/badge.svg)
16-
![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość-4.825%25-0.svg)
16+
![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość-4.797%25-0.svg)
1717
![4 tłumaczy](https://img.shields.io/badge/tłumaczy-4-0.svg)
1818
<!-- [[[end]]] -->
1919

faq/design.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.13\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2025-09-05 15:15+0000\n"
14+
"POT-Creation-Date: 2025-09-07 15:08+0000\n"
1515
"PO-Revision-Date: 2025-07-18 19:21+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -841,9 +841,9 @@ msgid ""
841841
"An appropriate testing discipline can help build large complex applications "
842842
"in Python as well as having interface specifications would. In fact, it can "
843843
"be better because an interface specification cannot test certain properties "
844-
"of a program. For example, the :meth:`!list.append` method is expected to "
844+
"of a program. For example, the :meth:`list.append` method is expected to "
845845
"add new elements to the end of some internal list; an interface "
846-
"specification cannot test that your :meth:`!list.append` implementation will "
846+
"specification cannot test that your :meth:`list.append` implementation will "
847847
"actually do this correctly, but it's trivial to check this property in a "
848848
"test suite."
849849
msgstr ""

faq/programming.po

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.13\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2025-09-05 15:15+0000\n"
14+
"POT-Creation-Date: 2025-09-07 15:08+0000\n"
1515
"PO-Revision-Date: 2025-07-18 19:21+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -619,9 +619,9 @@ msgid ""
619619
msgstr ""
620620

621621
msgid ""
622-
"After the call to :meth:`!append`, the content of the mutable object has "
623-
"changed from ``[]`` to ``[10]``. Since both the variables refer to the same "
624-
"object, using either name accesses the modified value ``[10]``."
622+
"After the call to :meth:`~sequence.append`, the content of the mutable "
623+
"object has changed from ``[]`` to ``[10]``. Since both the variables refer "
624+
"to the same object, using either name accesses the modified value ``[10]``."
625625
msgstr ""
626626

627627
msgid "If we instead assign an immutable object to ``x``::"
@@ -1902,8 +1902,9 @@ msgid ""
19021902
"an :meth:`~object.__iadd__` magic method, it gets called when the ``+=`` "
19031903
"augmented assignment is executed, and its return value is what gets used in "
19041904
"the assignment statement; and (b) for lists, :meth:`!__iadd__` is equivalent "
1905-
"to calling :meth:`!extend` on the list and returning the list. That's why "
1906-
"we say that for lists, ``+=`` is a \"shorthand\" for :meth:`!list.extend`::"
1905+
"to calling :meth:`~sequence.extend` on the list and returning the list. "
1906+
"That's why we say that for lists, ``+=`` is a \"shorthand\" for :meth:`list."
1907+
"extend`::"
19071908
msgstr ""
19081909

19091910
msgid ""

glossary.po

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.13\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2025-09-05 15:15+0000\n"
14+
"POT-Creation-Date: 2025-09-07 15:08+0000\n"
1515
"PO-Revision-Date: 2025-07-18 19:21+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -47,8 +47,9 @@ msgid ""
4747
"quotes), or after specifying a decorator."
4848
msgstr ""
4949

50-
msgid "The :const:`Ellipsis` built-in constant."
51-
msgstr "Wbudowanej stałej :const:`Ellipsis`."
50+
msgid ""
51+
"The three dots form of the :ref:`Ellipsis <bltin-ellipsis-object>` object."
52+
msgstr ""
5253

5354
msgid "abstract base class"
5455
msgstr "abstrakcyjna klasa bazowa"
@@ -1837,11 +1838,11 @@ msgstr ""
18371838
msgid ""
18381839
"The :class:`collections.abc.Sequence` abstract base class defines a much "
18391840
"richer interface that goes beyond just :meth:`~object.__getitem__` and :meth:"
1840-
"`~object.__len__`, adding :meth:`!count`, :meth:`!index`, :meth:`~object."
1841-
"__contains__`, and :meth:`~object.__reversed__`. Types that implement this "
1842-
"expanded interface can be registered explicitly using :func:`~abc.ABCMeta."
1843-
"register`. For more documentation on sequence methods generally, see :ref:"
1844-
"`Common Sequence Operations <typesseq-common>`."
1841+
"`~object.__len__`, adding :meth:`~sequence.count`, :meth:`~sequence.index`, :"
1842+
"meth:`~object.__contains__`, and :meth:`~object.__reversed__`. Types that "
1843+
"implement this expanded interface can be registered explicitly using :func:"
1844+
"`~abc.ABCMeta.register`. For more documentation on sequence methods "
1845+
"generally, see :ref:`Common Sequence Operations <typesseq-common>`."
18451846
msgstr ""
18461847

18471848
msgid "set comprehension"
@@ -2171,6 +2172,12 @@ msgid ""
21712172
"\"``import this``\" at the interactive prompt."
21722173
msgstr ""
21732174

2175+
msgid "..."
2176+
msgstr ""
2177+
2178+
msgid "ellipsis literal"
2179+
msgstr ""
2180+
21742181
msgid "C-contiguous"
21752182
msgstr ""
21762183

library/bisect.po

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.13\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2025-09-05 15:15+0000\n"
14+
"POT-Creation-Date: 2025-09-07 15:08+0000\n"
1515
"PO-Revision-Date: 2025-07-18 19:21+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -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.13\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2025-09-05 15:15+0000\n"
14+
"POT-Creation-Date: 2025-09-07 15:08+0000\n"
1515
"PO-Revision-Date: 2025-07-18 19:21+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -464,12 +464,12 @@ msgstr ""
464464

465465
msgid ""
466466
"Implementation note: Some of the mixin methods, such as :meth:`~container."
467-
"__iter__`, :meth:`~object.__reversed__` and :meth:`index`, make repeated "
468-
"calls to the underlying :meth:`~object.__getitem__` method. Consequently, "
469-
"if :meth:`~object.__getitem__` is implemented with constant access speed, "
470-
"the mixin methods will have linear performance; however, if the underlying "
471-
"method is linear (as it would be with a linked list), the mixins will have "
472-
"quadratic performance and will likely need to be overridden."
467+
"__iter__`, :meth:`~object.__reversed__`, and :meth:`~sequence.index` make "
468+
"repeated calls to the underlying :meth:`~object.__getitem__` method. "
469+
"Consequently, if :meth:`~object.__getitem__` is implemented with constant "
470+
"access speed, the mixin methods will have linear performance; however, if "
471+
"the underlying method is linear (as it would be with a linked list), the "
472+
"mixins will have quadratic performance and will likely need to be overridden."
473473
msgstr ""
474474

475475
msgid "Return first index of *value*."
@@ -483,7 +483,8 @@ msgid ""
483483
msgstr ""
484484

485485
msgid ""
486-
"The :meth:`!index` method added support for *stop* and *start* arguments."
486+
"The :meth:`~sequence.index` method gained support for the *stop* and *start* "
487+
"arguments."
487488
msgstr ""
488489

489490
msgid ""

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.13\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2025-09-05 15:15+0000\n"
14+
"POT-Creation-Date: 2025-09-07 15:08+0000\n"
1515
"PO-Revision-Date: 2025-07-18 19:21+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -890,10 +890,10 @@ msgstr ""
890890
msgid ""
891891
"When each key is encountered for the first time, it is not already in the "
892892
"mapping; so an entry is automatically created using the :attr:`~defaultdict."
893-
"default_factory` function which returns an empty :class:`list`. The :meth:`!"
894-
"list.append` operation then attaches the value to the new list. When keys "
893+
"default_factory` function which returns an empty :class:`list`. The :meth:"
894+
"`list.append` operation then attaches the value to the new list. When keys "
895895
"are encountered again, the look-up proceeds normally (returning the list for "
896-
"that key) and the :meth:`!list.append` operation adds another value to the "
896+
"that key) and the :meth:`list.append` operation adds another value to the "
897897
"list. This technique is simpler and faster than an equivalent technique "
898898
"using :meth:`dict.setdefault`:"
899899
msgstr ""

library/constants.po

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.13\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2025-09-05 15:15+0000\n"
14+
"POT-Creation-Date: 2025-09-07 15:08+0000\n"
1515
"PO-Revision-Date: 2025-07-18 19:21+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -110,15 +110,11 @@ msgstr ""
110110
"wersjach Pythona będzie rzucać wyjątkiem :exc:`TypeError`."
111111

112112
msgid ""
113-
"The same as the ellipsis literal \"``...``\". Special value used mostly in "
114-
"conjunction with extended slicing syntax for user-defined container data "
115-
"types. ``Ellipsis`` is the sole instance of the :data:`types.EllipsisType` "
116-
"type."
113+
"The same as the ellipsis literal \"``...``\", an object frequently used to "
114+
"indicate that something is omitted. Assignment to ``Ellipsis`` is possible, "
115+
"but assignment to ``...`` raises a :exc:`SyntaxError`. ``Ellipsis`` is the "
116+
"sole instance of the :data:`types.EllipsisType` type."
117117
msgstr ""
118-
"To samo co literalny zapis wielokropka \"``...``\". Wartość specjalna "
119-
"używana głównie w połączeniu z rozszerzoną składnią krojenia typów danych "
120-
"kontenerów zdefiniowanych przez użytkownika. ``Ellipsis`` jest jedyną "
121-
"instancją typu :data:`types.EllipsisType`."
122118

123119
msgid ""
124120
"This constant is true if Python was not started with an :option:`-O` option. "

library/logging.po

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.13\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2025-09-05 15:15+0000\n"
14+
"POT-Creation-Date: 2025-09-07 15:08+0000\n"
1515
"PO-Revision-Date: 2025-07-18 19:22+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -755,19 +755,18 @@ msgid ""
755755
msgstr ""
756756

757757
msgid ""
758-
"A format string in the given *style* for the date/time portion of the logged "
759-
"output. If not specified, the default described in :meth:`formatTime` is "
760-
"used."
758+
"A format string for the date/time portion of the logged output. If not "
759+
"specified, the default described in :meth:`formatTime` is used."
761760
msgstr ""
762761

763762
msgid ""
764763
"Can be one of ``'%'``, ``'{'`` or ``'$'`` and determines how the format "
765764
"string will be merged with its data: using one of :ref:`old-string-"
766765
"formatting` (``%``), :meth:`str.format` (``{``) or :class:`string.Template` "
767-
"(``$``). This only applies to *fmt* and *datefmt* (e.g. ``'%(message)s'`` "
768-
"versus ``'{message}'``), not to the actual log messages passed to the "
769-
"logging methods. However, there are :ref:`other ways <formatting-styles>` to "
770-
"use ``{``- and ``$``-formatting for log messages."
766+
"(``$``). This only applies to *fmt* (e.g. ``'%(message)s'`` versus "
767+
"``'{message}'``), not to the actual log messages passed to the logging "
768+
"methods. However, there are :ref:`other ways <formatting-styles>` to use "
769+
"``{``- and ``$``-formatting for log messages."
771770
msgstr ""
772771

773772
msgid ""

0 commit comments

Comments
 (0)