Skip to content

Commit f6ce60a

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent a7e4ff9 commit f6ce60a

File tree

8 files changed

+18
-14
lines changed

8 files changed

+18
-14
lines changed

README.en.md

+1-1
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.954%25-0.svg)
16+
![Total Translation of Documentation](https://img.shields.io/badge/Total-4.955%25-0.svg)
1717
![24 Translators](https://img.shields.io/badge/Translators-24-0.svg)
1818
<!-- [[[end]]] -->
1919

README.md

+1-1
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.954%25-0.svg)
16+
![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość-4.955%25-0.svg)
1717
![24 tłumaczy](https://img.shields.io/badge/tłumaczy-24-0.svg)
1818
<!-- [[[end]]] -->
1919

c-api/type.po

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.13\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2025-04-04 14:18+0000\n"
15+
"POT-Creation-Date: 2025-04-18 14:18+0000\n"
1616
"PO-Revision-Date: 2021-06-28 00:50+0000\n"
1717
"Last-Translator: Stan Ulbrych, 2024\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

library/functions.po

+4
Original file line numberDiff line numberDiff line change
@@ -1688,6 +1688,10 @@ msgid ""
16881688
">>> s\n"
16891689
"\"Monty Python's Flying Circus\""
16901690
msgstr ""
1691+
">>> s = input('--> ')\n"
1692+
"--> Monty Python's Flying Circus\n"
1693+
">>> s\n"
1694+
"\"Monty Python's Flying Circus\""
16911695

16921696
msgid ""
16931697
"If the :mod:`readline` module was loaded, then :func:`input` will use it to "

library/os.po

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ msgid ""
1313
msgstr ""
1414
"Project-Id-Version: Python 3.13\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2025-04-04 14:18+0000\n"
16+
"POT-Creation-Date: 2025-04-18 14:18+0000\n"
1717
"PO-Revision-Date: 2021-06-28 01:10+0000\n"
1818
"Last-Translator: Stan Ulbrych, 2025\n"
1919
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

license.po

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.13\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2025-04-04 14:18+0000\n"
15+
"POT-Creation-Date: 2025-04-18 14:18+0000\n"
1616
"PO-Revision-Date: 2021-06-28 00:47+0000\n"
1717
"Last-Translator: Stan Ulbrych, 2024\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

tutorial/classes.po

+8-8
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ msgid ""
1616
msgstr ""
1717
"Project-Id-Version: Python 3.13\n"
1818
"Report-Msgid-Bugs-To: \n"
19-
"POT-Creation-Date: 2025-04-04 14:18+0000\n"
19+
"POT-Creation-Date: 2025-04-18 14:18+0000\n"
2020
"PO-Revision-Date: 2021-06-28 01:49+0000\n"
2121
"Last-Translator: Maciej Olko <[email protected]>, 2025\n"
2222
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -927,12 +927,12 @@ msgid ""
927927
msgstr ""
928928
"class Dog:\n"
929929
"\n"
930-
"def __init__(self, name):\n"
931-
"self.name = name\n"
932-
"self.tricks = [] # tworzy nową pustą listę dla każdego psa\n"
930+
" def __init__(self, name):\n"
931+
" self.name = name\n"
932+
" self.tricks = [] # tworzy nową pustą listę dla każdego psa\n"
933933
"\n"
934-
"def add_trick(self, trick):\n"
935-
"self.tricks.append(trick)\n"
934+
" def add_trick(self, trick):\n"
935+
" self.tricks.append(trick)\n"
936936
"\n"
937937
">>> d = Dog('Fido')\n"
938938
">>> e = Dog('Zito')\n"
@@ -967,8 +967,8 @@ msgid ""
967967
"storage east"
968968
msgstr ""
969969
">>> class Magazyn:\n"
970-
"... cel = 'przechowywanie'\n"
971-
"... region = 'zachód'\n"
970+
"... cel = 'przechowywanie'\n"
971+
"... region = 'zachód'\n"
972972
"...\n"
973973
">>> m1 = Magazyn()\n"
974974
">>> print(m1.cel, m1.region)\n"

using/android.po

+1-1
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-04-04 14:18+0000\n"
14+
"POT-Creation-Date: 2025-04-18 14:18+0000\n"
1515
"PO-Revision-Date: 2024-09-27 14:19+0000\n"
1616
"Last-Translator: Stan Ulbrych, 2025\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

0 commit comments

Comments
 (0)