@@ -15,7 +15,7 @@ msgid ""
15
15
msgstr ""
16
16
"Project-Id-Version : Python 3.13\n "
17
17
"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 "
19
19
"PO-Revision-Date : 2021-06-28 01:49+0000\n "
20
20
"
Last-Translator :
Maciej Olko <[email protected] >, 2024\n "
21
21
"Language-Team : Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
@@ -396,25 +396,31 @@ msgstr ""
396
396
"przed przypisaniem :keyword:`global`."
397
397
398
398
msgid "A First Look at Classes"
399
- msgstr ""
399
+ msgstr "Pierwsze spojrzenie na klasy "
400
400
401
401
msgid ""
402
402
"Classes introduce a little bit of new syntax, three new object types, and "
403
403
"some new semantics."
404
404
msgstr ""
405
+ "Klasy wprowadzają trochę nowej składni, trzy nowe typy obiektów i trochę "
406
+ "nowej semantyki."
405
407
406
408
msgid "Class Definition Syntax"
407
- msgstr ""
409
+ msgstr "Składnia definicji klasy "
408
410
409
411
msgid "The simplest form of class definition looks like this::"
410
- msgstr ""
412
+ msgstr "Najprostsza forma definicji klasy wygląda następująco:: "
411
413
412
414
msgid ""
413
415
"Class definitions, like function definitions (:keyword:`def` statements) "
414
416
"must be executed before they have any effect. (You could conceivably place "
415
417
"a class definition in a branch of an :keyword:`if` statement, or inside a "
416
418
"function.)"
417
419
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.)"
418
424
419
425
msgid ""
420
426
"In practice, the statements inside a class definition will usually be "
@@ -423,6 +429,11 @@ msgid ""
423
429
"normally have a peculiar form of argument list, dictated by the calling "
424
430
"conventions for methods --- again, this is explained later."
425
431
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."
426
437
427
438
msgid ""
428
439
"When a class definition is entered, a new namespace is created, and used as "
0 commit comments