@@ -58,11 +58,16 @@ msgid ""
5858"element before which to insert, so ``a.insert(0, x)`` inserts at the front "
5959"of the list, and ``a.insert(len(a), x)`` is equivalent to ``a.append(x)``."
6060msgstr ""
61+ "Wstawia element na podaną pozycję. Pierwszy argument jest indeksem elementu, "
62+ "przed którym wstawiamy, więc ``a.insert(0, x)`` wstawia na początek listy a "
63+ "``a.insert(len(a), x)`` odpowiada ``a.append(x)``."
6164
6265msgid ""
6366"Remove the first item from the list whose value is equal to *x*. It raises "
6467"a :exc:`ValueError` if there is no such item."
6568msgstr ""
69+ "Usuń pierwszy element z listy, którego wartość jest równa *x*. Rzuca :exc:"
70+ "`ValueError`, jeśli nie ma takiego elementu."
6671
6772msgid ""
6873"Remove the item at the given position in the list, and return it. If no "
@@ -72,9 +77,14 @@ msgid ""
7277"that position. You will see this notation frequently in the Python Library "
7378"Reference.)"
7479msgstr ""
80+ "Usuwa element z podanej pozycji na liście i zwraca go. Jeśli indeks nie jest "
81+ "podany, ``a.pop()`` usuwa i zwraca ostatni element listy. (Nawiasy "
82+ "kwadratowe dookoła *i* w sygnaturze metody oznaczają, że ten parametr jest "
83+ "opcjonalny, nie że powinieneś wpisać nawiasy kwadratowe w tym miejscu. Taką "
84+ "notację będziesz często widzieć w dokumentacji biblioteki Pythona.)"
7585
7686msgid "Remove all items from the list. Equivalent to ``del a[:]``."
77- msgstr ""
87+ msgstr "Usuwa wszystkie elementy z listy. Ekwiwalent ``del a[:]``. "
7888
7989msgid ""
8090"Return zero-based index in the list of the first item whose value is equal "
0 commit comments