@@ -12,7 +12,7 @@ msgid ""
12
12
msgstr ""
13
13
"Project-Id-Version : Python 3.10\n "
14
14
"Report-Msgid-Bugs-To : \n "
15
- "POT-Creation-Date : 2024-08-31 12:42 +0000\n "
15
+ "POT-Creation-Date : 2024-09-06 18:06 +0000\n "
16
16
"PO-Revision-Date : 2022-11-05 17:23+0000\n "
17
17
"Last-Translator : Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n "
18
18
"Language-Team : Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
@@ -386,25 +386,31 @@ msgstr ""
386
386
"przed przypisaniem :keyword:`global`."
387
387
388
388
msgid "A First Look at Classes"
389
- msgstr ""
389
+ msgstr "Pierwsze spojrzenie na klasy "
390
390
391
391
msgid ""
392
392
"Classes introduce a little bit of new syntax, three new object types, and "
393
393
"some new semantics."
394
394
msgstr ""
395
+ "Klasy wprowadzają trochę nowej składni, trzy nowe typy obiektów i trochę "
396
+ "nowej semantyki."
395
397
396
398
msgid "Class Definition Syntax"
397
- msgstr ""
399
+ msgstr "Składnia definicji klasy "
398
400
399
401
msgid "The simplest form of class definition looks like this::"
400
- msgstr ""
402
+ msgstr "Najprostsza forma definicji klasy wygląda następująco:: "
401
403
402
404
msgid ""
403
405
"Class definitions, like function definitions (:keyword:`def` statements) "
404
406
"must be executed before they have any effect. (You could conceivably place "
405
407
"a class definition in a branch of an :keyword:`if` statement, or inside a "
406
408
"function.)"
407
409
msgstr ""
410
+ "Definicje klas, podobnie jak definicje funkcji (instrukcje :keyword:`def`), "
411
+ "muszą zostać wykonane, zanim będą miały jakikolwiek efekt. (Można sobie "
412
+ "wyobrazić umieszczenie definicji klasy w gałęzi instrukcji :keyword:`if` lub "
413
+ "wewnątrz funkcji.)"
408
414
409
415
msgid ""
410
416
"In practice, the statements inside a class definition will usually be "
@@ -413,6 +419,11 @@ msgid ""
413
419
"normally have a peculiar form of argument list, dictated by the calling "
414
420
"conventions for methods --- again, this is explained later."
415
421
msgstr ""
422
+ "W praktyce, instrukcje wewnątrz definicji klasy będą zwykle definicjami "
423
+ "funkcji, ale inne instrukcje są dozwolone, a czasem przydatne --- wrócimy do "
424
+ "tego później. Definicje funkcji wewnątrz klasy zwykle mają specyficzną formę "
425
+ "listy argumentów, podyktowaną konwencjami wywoływania metod --- ponownie, "
426
+ "zostanie to wyjaśnione później."
416
427
417
428
msgid ""
418
429
"When a class definition is entered, a new namespace is created, and used as "
0 commit comments