@@ -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-10-18 16:00 +0000\n "
15
+ "POT-Creation-Date : 2024-11-08 00:47 +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 "
@@ -447,19 +447,26 @@ msgid ""
447
447
msgstr ""
448
448
449
449
msgid "Class Objects"
450
- msgstr ""
450
+ msgstr "Obiekty klas "
451
451
452
452
msgid ""
453
453
"Class objects support two kinds of operations: attribute references and "
454
454
"instantiation."
455
455
msgstr ""
456
+ "Obiekty klas obsługują dwa rodzaje operacji: odniesienia do atrybutów i "
457
+ "tworzenie instancji."
456
458
457
459
msgid ""
458
460
"*Attribute references* use the standard syntax used for all attribute "
459
461
"references in Python: ``obj.name``. Valid attribute names are all the names "
460
462
"that were in the class's namespace when the class object was created. So, "
461
463
"if the class definition looked like this::"
462
464
msgstr ""
465
+ "*Odniesienia do atrybutów* używają standardowej składni używanej dla "
466
+ "wszystkich odniesień do atrybutów w Pythonie: ``obj.name``. Prawidłowe "
467
+ "nazwy atrybutów to wszystkie nazwy, które znajdowały się w przestrzeni nazw "
468
+ "klasy, gdy obiekt klasy został utworzony. Tak więc, jeśli definicja klasy "
469
+ "wyglądała tak::"
463
470
464
471
msgid ""
465
472
"then ``MyClass.i`` and ``MyClass.f`` are valid attribute references, "
@@ -474,11 +481,16 @@ msgid ""
474
481
"object is a parameterless function that returns a new instance of the class. "
475
482
"For example (assuming the above class)::"
476
483
msgstr ""
484
+ "*Instancjonowanie* klasy używa notacji funkcji. Wystarczy udawać, że obiekt "
485
+ "klasy jest bezparametrową funkcją, która zwraca nową instancję klasy. Na "
486
+ "przykład (zakładając powyższą klasę)::"
477
487
478
488
msgid ""
479
489
"creates a new *instance* of the class and assigns this object to the local "
480
490
"variable ``x``."
481
491
msgstr ""
492
+ "tworzy nową *instancję* klasy i przypisuje ten obiekt do zmiennej lokalnej "
493
+ "``x``."
482
494
483
495
msgid ""
484
496
"The instantiation operation (\" calling\" a class object) creates an empty "
0 commit comments