Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit41813c4

Browse files
GitHub Action's update-translation jobm-aciek
GitHub Action's update-translation job
andcommitted
Update translation from Transifex
Co-Authored-By: Maciej Olko <maciej.olko@gmail.com>
1 parent7cc039d commit41813c4

File tree

4 files changed

+40
-2
lines changed

4 files changed

+40
-2
lines changed

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

‎library/functions.po‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3000,6 +3000,10 @@ msgid ""
30003000
"(the :meth:`~object.__len__` method and the :meth:`~object.__getitem__` "
30013001
"method with integer arguments starting at ``0``)."
30023002
msgstr""
3003+
"Zwraca odwrócony :term:`iterator`. Argument musi być obiektem, który ma "
3004+
"metodę :meth:`~object.__reversed__` lub obsługuje protokół sekwencji "
3005+
"(metoda :meth:`~object.__len__` i metoda :meth:`~object.__getitem__` z "
3006+
"całkowitymi argumentami począwszy od ``0``)."
30033007

30043008
msgid""
30053009
"Return *number* rounded to *ndigits* precision after the decimal point. If "

‎tutorial/datastructures.po‎

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -926,6 +926,11 @@ msgid ""
926926
"value pair with ``del``. If you store using a key that is already in use, "
927927
"the old value associated with that key is forgotten."
928928
msgstr""
929+
"Głównymi operacjami na słowniku są umieszczanie wartości pod jakimś kluczem "
930+
"oraz wyciąganie wartości dla podanego klucza. Możliwe jest również usunięcie "
931+
"pary klucz:wartość przy użyciu ``del``. Jeśli umieścisz wartość używając "
932+
"klucza, który już jest w użyciu, stara wartość powiązana z tym kluczem "
933+
"zostanie zapomniana."
929934

930935
msgid""
931936
"Extracting a value for a non-existent key by subscripting (``d[key]``) "
@@ -934,6 +939,11 @@ msgid ""
934939
"returns ``None`` (or a specified default value) if the key is not in the "
935940
"dictionary."
936941
msgstr""
942+
"Pobieranie wartości dla nieistniejącego klucza przez operator index "
943+
"(``d[key]``) rzuca :exc:`KeyError`. Aby uniknąć tego błędu podczas próby "
944+
"pobierania potencjalnie nieistniejącego klucza, należy zamiast tego użyć "
945+
"metody :meth:`~dict.get`, który zwraca ``None`` (lub określoną domyślną "
946+
"wartość), jeśli klucz nie znajduje się w słowniku."
937947

938948
msgid""
939949
"Performing ``list(d)`` on a dictionary returns a list of all the keys used "
@@ -975,6 +985,30 @@ msgid ""
975985
">>> 'jack' not in tel\n"
976986
"False"
977987
msgstr""
988+
">>> tel = {'jack': 4098, 'sape': 4139}\n"
989+
">>> tel['guido'] = 4127\n"
990+
">>> tel\n"
991+
"{'jack': 4098, 'sape': 4139, 'guido': 4127}\n"
992+
">>> tel['jack']\n"
993+
"4098\n"
994+
">>> tel['irv']\n"
995+
"Traceback (most recent call last):\n"
996+
" File\"\", line 1, in \n"
997+
"KeyError: 'irv'\n"
998+
">>> print(tel.get('irv'))\n"
999+
"None\n"
1000+
">>> del tel['sape']\n"
1001+
">>> tel['irv'] = 4127\n"
1002+
">>> tel\n"
1003+
"{'jack': 4098, 'guido': 4127, 'irv': 4127}\n"
1004+
">>> list(tel)\n"
1005+
"['jack', 'guido', 'irv']\n"
1006+
">>> sorted(tel)\n"
1007+
"['guido', 'irv', 'jack']\n"
1008+
">>> 'guido' in tel\n"
1009+
"True\n"
1010+
">>> 'jack' not in tel\n"
1011+
"False"
9781012

9791013
msgid""
9801014
"The :func:`dict` constructor builds dictionaries directly from sequences of "

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp