Skip to content

Commit b26631b

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 ae6d00f commit b26631b

3 files changed

Lines changed: 24 additions & 5 deletions

File tree

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-5.595%25-0.svg)
16+
![Total Translation of Documentation](https://img.shields.io/badge/Total-5.600%25-0.svg)
1717
![5 Translators](https://img.shields.io/badge/Translators-5-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ść-5.595%25-0.svg)
16+
![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość-5.600%25-0.svg)
1717
![5 tłumaczy](https://img.shields.io/badge/tłumaczy-5-0.svg)
1818
<!-- [[[end]]] -->
1919

tutorial/stdlib2.po

Lines changed: 22 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -389,6 +389,25 @@ msgid ""
389389
"background.join() # Wait for the background task to finish\n"
390390
"print('Main program waited until background was done.')"
391391
msgstr ""
392+
"import threading, zipfile\n"
393+
"\n"
394+
"class AsyncZip(threading.Thread):\n"
395+
" def __init__(self, infile, outfile):\n"
396+
" super().__init__()\n"
397+
" self.infile = infile\n"
398+
" self.outfile = outfile\n"
399+
"\n"
400+
" def run(self):\n"
401+
" with zipfile.ZipFile(self.outfile, 'w', zipfile.ZIP_DEFLATED) as f:\n"
402+
" f.write(self.infile)\n"
403+
" print('Zakończono zipowanie w tle pliku:', self.infile)\n"
404+
"\n"
405+
"background = AsyncZip('mydata.txt', 'myarchive.zip')\n"
406+
"background.start()\n"
407+
"print('Główny program nadal działa.')\n"
408+
"\n"
409+
"background.join() # Poczekaj na zakończenie zadania w tle\n"
410+
"print('Główny program czekał, aż tło zostanie wykonane.')"
392411

393412
msgid ""
394413
"The principal challenge of multi-threaded applications is coordinating "
@@ -483,7 +502,7 @@ msgstr ""
483502
"w celu dostosowania rejestrowania bez zmiany aplikacji."
484503

485504
msgid "Weak references"
486-
msgstr ""
505+
msgstr "Wsparcie słabych odniesień"
487506

488507
msgid ""
489508
"Python does automatic memory management (reference counting for most objects "
@@ -562,7 +581,7 @@ msgstr ""
562581
"KeyError: 'primary'"
563582

564583
msgid "Tools for working with lists"
565-
msgstr ""
584+
msgstr "Narzędzia do pracy z listami"
566585

567586
msgid ""
568587
"Many data structure needs can be met with the built-in list type. However, "
@@ -693,7 +712,7 @@ msgstr ""
693712
"[-5, 0, 1]"
694713

695714
msgid "Decimal floating-point arithmetic"
696-
msgstr ""
715+
msgstr "Dziesiętna arytmetyka zmiennoprzecinkowa"
697716

698717
msgid ""
699718
"The :mod:`decimal` module offers a :class:`~decimal.Decimal` datatype for "

0 commit comments

Comments
 (0)