Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 17edeee

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent b4df0d6 commit 17edeee

File tree

2 files changed

+17
-6
lines changed

2 files changed

+17
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ f'''![build](https://github.com/python/python-docs-pl/workflows/.github/workflow
1515
![{translators} tłumaczy](https://img.shields.io/badge/tłumaczy-{translators}-0.svg)''')
1616
]]] -->
1717
![build](https://github.com/python/python-docs-pl/workflows/.github/workflows/update-lint-and-build.yml/badge.svg)
18-
![62.19% przełącznika języków](https://img.shields.io/badge/przełącznik_języków-62.19%25-0.svg)
19-
![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość-3.34%25-0.svg)
18+
![62.51% przełącznika języków](https://img.shields.io/badge/przełącznik_języków-62.51%25-0.svg)
19+
![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość-3.35%25-0.svg)
2020
![21 tłumaczy](https://img.shields.io/badge/tłumaczy-21-0.svg)
2121
<!-- [[[end]]] -->
2222

tutorial/classes.po

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ msgid ""
1515
msgstr ""
1616
"Project-Id-Version: Python 3.13\n"
1717
"Report-Msgid-Bugs-To: \n"
18-
"POT-Creation-Date: 2024-08-16 14:15+0000\n"
18+
"POT-Creation-Date: 2024-08-23 14:16+0000\n"
1919
"PO-Revision-Date: 2021-06-28 01:49+0000\n"
2020
"Last-Translator: Maciej Olko <[email protected]>, 2024\n"
2121
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -396,25 +396,31 @@ msgstr ""
396396
"przed przypisaniem :keyword:`global`."
397397

398398
msgid "A First Look at Classes"
399-
msgstr ""
399+
msgstr "Pierwsze spojrzenie na klasy"
400400

401401
msgid ""
402402
"Classes introduce a little bit of new syntax, three new object types, and "
403403
"some new semantics."
404404
msgstr ""
405+
"Klasy wprowadzają trochę nowej składni, trzy nowe typy obiektów i trochę "
406+
"nowej semantyki."
405407

406408
msgid "Class Definition Syntax"
407-
msgstr ""
409+
msgstr "Składnia definicji klasy"
408410

409411
msgid "The simplest form of class definition looks like this::"
410-
msgstr ""
412+
msgstr "Najprostsza forma definicji klasy wygląda następująco::"
411413

412414
msgid ""
413415
"Class definitions, like function definitions (:keyword:`def` statements) "
414416
"must be executed before they have any effect. (You could conceivably place "
415417
"a class definition in a branch of an :keyword:`if` statement, or inside a "
416418
"function.)"
417419
msgstr ""
420+
"Definicje klas, podobnie jak definicje funkcji (instrukcje :keyword:`def`), "
421+
"muszą zostać wykonane, zanim będą miały jakikolwiek efekt. (Można sobie "
422+
"wyobrazić umieszczenie definicji klasy w gałęzi instrukcji :keyword:`if` lub "
423+
"wewnątrz funkcji.)"
418424

419425
msgid ""
420426
"In practice, the statements inside a class definition will usually be "
@@ -423,6 +429,11 @@ msgid ""
423429
"normally have a peculiar form of argument list, dictated by the calling "
424430
"conventions for methods --- again, this is explained later."
425431
msgstr ""
432+
"W praktyce, instrukcje wewnątrz definicji klasy będą zwykle definicjami "
433+
"funkcji, ale inne instrukcje są dozwolone, a czasem przydatne --- wrócimy do "
434+
"tego później. Definicje funkcji wewnątrz klasy zwykle mają specyficzną formę "
435+
"listy argumentów, podyktowaną konwencjami wywoływania metod --- ponownie, "
436+
"zostanie to wyjaśnione później."
426437

427438
msgid ""
428439
"When a class definition is entered, a new namespace is created, and used as "

0 commit comments

Comments
 (0)