Skip to content

Commit 4ce37f5

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 fe11eeb commit 4ce37f5

3 files changed

Lines changed: 32 additions & 13 deletions

File tree

README.en.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ f'''[![build](https://github.com/python/python-docs-pl/actions/workflows/update-
1414
[![Total Translation of Documentation](https://img.shields.io/badge/total_strings-{total_strings:.2f}%25-0.svg)](https://translations.python.org/#pl)''')
1515
]]] -->
1616
[![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)
17-
[![core 99.86%](https://img.shields.io/badge/core-99.86%25-0.svg)](https://translations.python.org/#pl)
17+
[![core 100.00%](https://img.shields.io/badge/core-100.00%25-0.svg)](https://translations.python.org/#pl)
1818
[![Total Translation of Documentation](https://img.shields.io/badge/total_words-5.39%25-0.svg)](https://translations.python.org/#pl)
19-
[![Total Translation of Documentation](https://img.shields.io/badge/total_strings-12.29%25-0.svg)](https://translations.python.org/#pl)
19+
[![Total Translation of Documentation](https://img.shields.io/badge/total_strings-12.30%25-0.svg)](https://translations.python.org/#pl)
2020
<!-- [[[end]]] -->
2121

2222
*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
@@ -14,9 +14,9 @@ f'''[![build](https://github.com/python/python-docs-pl/actions/workflows/update-
1414
[![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość_napisów-{total_strings:.2f}%25-0.svg)](https://translations.python.org/#pl)''')
1515
]]] -->
1616
[![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)
17-
[![podstawowe artykuły 99.86%](https://img.shields.io/badge/podstawowe_artykuły-99.86%25-0.svg)](https://translations.python.org/#pl)
17+
[![podstawowe artykuły 100.00%](https://img.shields.io/badge/podstawowe_artykuły-100.00%25-0.svg)](https://translations.python.org/#pl)
1818
[![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość_słów-5.39%25-0.svg)](https://translations.python.org/#pl)
19-
[![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość_napisów-12.29%25-0.svg)](https://translations.python.org/#pl)
19+
[![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość_napisów-12.30%25-0.svg)](https://translations.python.org/#pl)
2020
<!-- [[[end]]] -->
2121

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

tutorial/stdlib2.po

Lines changed: 28 additions & 9 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('mojedane.txt', 'mojearchiwum.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 "
@@ -439,12 +458,12 @@ msgid ""
439458
"logging.critical('Critical error -- shutting down')"
440459
msgstr ""
441460
"import logging\n"
442-
"logging.debug('Informacje o debugowaniuwarning')\n"
461+
"logging.debug('Informacje do debugowania')\n"
443462
"logging.info('Komunikat informacyjny')\n"
444-
"logging.warning('ostrzeżenie: nie znaleziono pliku konfiguracyjnego %s ', "
463+
"logging.warning('Ostrzeżenie: nie znaleziono pliku konfiguracyjnego %s', "
445464
"'server.conf')\n"
446465
"logging.error('Wystąpił błąd')\n"
447-
"logging.critical('Błąd krytyczny -- wyłączenie')"
466+
"logging.critical('Błąd krytyczny -- wyłączanie')"
448467

449468
msgid "This produces the following output:"
450469
msgstr "Daje to taki wyniki:"
@@ -454,9 +473,9 @@ msgid ""
454473
"ERROR:root:Error occurred\n"
455474
"CRITICAL:root:Critical error -- shutting down"
456475
msgstr ""
457-
"WARNING:root:Warning:config file server.conf not found\n"
458-
"ERROR:root:Error occurred\n"
459-
"CRITICAL:root:Critical error -- shutting down"
476+
"WARNING:root:Ostrzeżenie: nie znaleziono pliku konfiguracyjnego server.conf\n"
477+
"ERROR:root:Wystąpił błąd\n"
478+
"CRITICAL:root:Błąd krytyczny -- wyłączanie"
460479

461480
msgid ""
462481
"By default, informational and debugging messages are suppressed and the "
@@ -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)