Skip to content

Commit a0ac697

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 702a3b5 commit a0ac697

3 files changed

Lines changed: 11 additions & 8 deletions

File tree

README.en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ 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 97.56%](https://img.shields.io/badge/core-97.56%25-0.svg)](https://translations.python.org/#pl)
17+
[![core 97.60%](https://img.shields.io/badge/core-97.60%25-0.svg)](https://translations.python.org/#pl)
1818
[![Total Translation of Documentation](https://img.shields.io/badge/total_words-5.11%25-0.svg)](https://translations.python.org/#pl)
1919
[![Total Translation of Documentation](https://img.shields.io/badge/total_strings-11.73%25-0.svg)](https://translations.python.org/#pl)
2020
<!-- [[[end]]] -->

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ 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 97.56%](https://img.shields.io/badge/podstawowe_artykuły-97.56%25-0.svg)](https://translations.python.org/#pl)
17+
[![podstawowe artykuły 97.60%](https://img.shields.io/badge/podstawowe_artykuły-97.60%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.11%25-0.svg)](https://translations.python.org/#pl)
1919
[![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość_napisów-11.73%25-0.svg)](https://translations.python.org/#pl)
2020
<!-- [[[end]]] -->

tutorial/datastructures.po

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -596,18 +596,21 @@ msgid ""
596596
"prefixing an expression by a ``*`` will unpack the result of that "
597597
"expression, adding each of its elements to the list we're creating::"
598598
msgstr ""
599-
"Sekcja dotycząca :ref:`tut-rozpakować-argument` opisuje użycie ``*`` do "
600-
"\"rozpakować\" elementów obiektu iterable, dostarczając każdy z nich osobno "
601-
"jako argument do funkcja. rozpakować może być również używany w innych "
602-
"kontekstach, na przykład podczas tworzenia list. Podczas określania "
603-
"elementów listy, poprzedzenie wyrażenia przez ``*`` spowoduje rozpakować "
604-
"wynik tego wyrażenia, dodając każdy z jego elementów do tworzonej listy::"
599+
"Sekcja dotycząca :ref:`tut-unpacking-arguments` opisuje użycie ``*`` do "
600+
"\"rozpakowywania\" elementów iterowalnego obiektu, dostarczając każdy z nich "
601+
"osobno jako argument do funkcji. Rozpakowywanie może być również używane w "
602+
"innych kontekstach, na przykład podczas tworzenia list. Podczas określania "
603+
"elementów listy, poprzedzenie wyrażenia znakiem ``*`` spowoduje rozpakowanie "
604+
"wyniku tego wyrażenia, dodając każdy z jego elementów do tworzonej listy::"
605605

606606
msgid ""
607607
">>> x = [1, 2, 3]\n"
608608
">>> [0, *x, 4, 5, 6]\n"
609609
"[0, 1, 2, 3, 4, 5, 6]"
610610
msgstr ""
611+
">>> x = [1, 2, 3]\n"
612+
">>> [0, *x, 4, 5, 6]\n"
613+
"[0, 1, 2, 3, 4, 5, 6]"
611614

612615
msgid ""
613616
"This only works if the expression following the ``*`` evaluates to an "

0 commit comments

Comments
 (0)