Skip to content

Commit 8650513

Browse files
GitHub Action's update-translation jobm-aciek
andcommitted
Update translation from Transifex
Co-Authored-By: Maciej Olko <maciej.olko@gmail.com>
1 parent 6dc2c0b commit 8650513

File tree

3 files changed

+18
-7
lines changed

3 files changed

+18
-7
lines changed

README.en.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ f'''[![build](https://github.com/python/python-docs-pl/actions/workflows/update-
1212
[![Total Translation of Documentation](https://img.shields.io/badge/total_strings-{total_strings:.2f}%25-0.svg)](https://python-docs-translations.github.io/dashboard/)''')
1313
]]] -->
1414
[![build](https://github.com/python/python-docs-pl/actions/workflows/update-lint-and-build.yml/badge.svg)](https://github.com/python/python-docs-pl/actions/workflows/update-lint-and-build.yml)
15-
[![Total Translation of Documentation](https://img.shields.io/badge/total_words-5.44%25-0.svg)](https://python-docs-translations.github.io/dashboard/)
16-
[![Total Translation of Documentation](https://img.shields.io/badge/total_strings-12.56%25-0.svg)](https://python-docs-translations.github.io/dashboard/)
15+
[![Total Translation of Documentation](https://img.shields.io/badge/total_words-5.45%25-0.svg)](https://python-docs-translations.github.io/dashboard/)
16+
[![Total Translation of Documentation](https://img.shields.io/badge/total_strings-12.57%25-0.svg)](https://python-docs-translations.github.io/dashboard/)
1717
<!-- [[[end]]] -->
1818

1919
*Przeczytaj to w innym języku: [polski](README.md)*

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ f'''[![build](https://github.com/python/python-docs-pl/actions/workflows/update-
1212
[![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość_napisów-{total_strings:.2f}%25-0.svg)](https://python-docs-translations.github.io/dashboard/)''')
1313
]]] -->
1414
[![build](https://github.com/python/python-docs-pl/actions/workflows/update-lint-and-build.yml/badge.svg)](https://github.com/python/python-docs-pl/actions/workflows/update-lint-and-build.yml)
15-
[![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość_słów-5.44%25-0.svg)](https://python-docs-translations.github.io/dashboard/)
16-
[![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość_napisów-12.56%25-0.svg)](https://python-docs-translations.github.io/dashboard/)
15+
[![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość_słów-5.45%25-0.svg)](https://python-docs-translations.github.io/dashboard/)
16+
[![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość_napisów-12.57%25-0.svg)](https://python-docs-translations.github.io/dashboard/)
1717
<!-- [[[end]]] -->
1818

1919
*Read this in another language: [English](README.en.md)*

library/functions.po

Lines changed: 14 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-27 14:12+0000\n"
15+
"POT-Creation-Date: 2025-10-07 14:17+0000\n"
1616
"PO-Revision-Date: 2025-09-16 00:01+0000\n"
1717
"Last-Translator: Maciej Olko <maciej.olko@gmail.com>, 2025\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -2099,7 +2099,7 @@ msgstr ""
20992099
"starmap`."
21002100

21012101
msgid "Added the *strict* parameter."
2102-
msgstr ""
2102+
msgstr "Dodano parametr *strict*."
21032103

21042104
msgid ""
21052105
"Return the largest item in an iterable or the largest of two or more "
@@ -2215,6 +2215,10 @@ msgid ""
22152215
"`int` object, it has to define an :meth:`~object.__index__` method that "
22162216
"returns an integer. For example:"
22172217
msgstr ""
2218+
"Konwertuje liczbę całkowitą na ósemkowy ciąg znaków z prefiksem \"0o\". "
2219+
"Wynik jest poprawnym wyrażeniem Pythona. Jeśli *integer* nie jest pythonowym "
2220+
"obiektem :class:`int`, musi definiować metodę :meth:`~object.__index__`, "
2221+
"która zwraca liczbę całkowitą. Na przykład:"
22182222

22192223
msgid ""
22202224
"If you want to convert an integer number to an octal string either with the "
@@ -2383,6 +2387,10 @@ msgid ""
23832387
"size is available. On most systems, the buffer will typically be 128 "
23842388
"kilobytes long."
23852389
msgstr ""
2390+
"Pliki binarne są buforowane w kawałkach o stałym rozmiarze; rozmiar bufora "
2391+
"to ``max(min(blocksize, 8 MiB), DEFAULT_BUFFER_SIZE)``, gdy dostępny jest "
2392+
"rozmiar bloku urządzenia. W większości systemów rozmiar bufora wynosi "
2393+
"zazwyczaj 128 kilobajtów."
23862394

23872395
msgid ""
23882396
"\"Interactive\" text files (files for which :meth:`~io.IOBase.isatty` "
@@ -2668,14 +2676,17 @@ msgid "The ``'U'`` mode has been removed."
26682676
msgstr "Tryb ``'U'`` został usunięty."
26692677

26702678
msgid "Return the ordinal value of a character."
2671-
msgstr ""
2679+
msgstr "Zwraca wartość porządkową znaku."
26722680

26732681
msgid ""
26742682
"If the argument is a one-character string, return the Unicode code point of "
26752683
"that character. For example, ``ord('a')`` returns the integer ``97`` and "
26762684
"``ord('€')`` (Euro sign) returns ``8364``. This is the inverse of :func:"
26772685
"`chr`."
26782686
msgstr ""
2687+
"Jeśli argument jest jedno-znakowym ciągiem znaków, zwraca punkt kodowy "
2688+
"Unicode tego znaku. Na przykład, ``ord('a')`` zwraca liczbę całkowitą ``97`` "
2689+
"i ``ord('€')`` (znak euro) zwraca ``8364`` . Jest to odwrotność :func:`chr`."
26792690

26802691
msgid ""
26812692
"If the argument is a :class:`bytes` or :class:`bytearray` object of length "

0 commit comments

Comments
 (0)