@@ -12,7 +12,7 @@ msgid ""
1212msgstr ""
1313"Project-Id-Version : Python 3.10\n "
1414"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 "
1616"PO-Revision-Date : 2022-11-05 17:23+0000\n "
1717"Last-Translator : Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n "
1818"Language-Team : Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
@@ -447,19 +447,26 @@ msgid ""
447447msgstr ""
448448
449449msgid "Class Objects"
450- msgstr ""
450+ msgstr "Obiekty klas "
451451
452452msgid ""
453453"Class objects support two kinds of operations: attribute references and "
454454"instantiation."
455455msgstr ""
456+ "Obiekty klas obsługują dwa rodzaje operacji: odniesienia do atrybutów i "
457+ "tworzenie instancji."
456458
457459msgid ""
458460"*Attribute references* use the standard syntax used for all attribute "
459461"references in Python: ``obj.name``. Valid attribute names are all the names "
460462"that were in the class's namespace when the class object was created. So, "
461463"if the class definition looked like this::"
462464msgstr ""
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::"
463470
464471msgid ""
465472"then ``MyClass.i`` and ``MyClass.f`` are valid attribute references, "
@@ -474,11 +481,16 @@ msgid ""
474481"object is a parameterless function that returns a new instance of the class. "
475482"For example (assuming the above class)::"
476483msgstr ""
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ę)::"
477487
478488msgid ""
479489"creates a new *instance* of the class and assigns this object to the local "
480490"variable ``x``."
481491msgstr ""
492+ "tworzy nową *instancję* klasy i przypisuje ten obiekt do zmiennej lokalnej "
493+ "``x``."
482494
483495msgid ""
484496"The instantiation operation (\" calling\" a class object) creates an empty "
0 commit comments