Skip to content

Commit 91c856a

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
Co-Authored-By: Blessing Oluronbi
1 parent d7f07eb commit 91c856a

2 files changed

Lines changed: 23 additions & 4 deletions

File tree

c-api/conversion.po

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,11 @@ msgid ""
194194
"number, set ``*endptr`` to point to the beginning of the string, raise "
195195
"ValueError, and return ``-1.0``."
196196
msgstr ""
197+
"Jeśli endptr jest różny od ``NULL`` , konwertuj tak dużą część napis jak to "
198+
"możliwe ``*endptr``, i ustaw wskaźnik na pierwszy nieprzekonwertowany znak. "
199+
"Jeżeli żaden początkowy segment napis nie jest prawidłową reprezentacją "
200+
"liczby zmiennoprzecinkowej, ustaw go tak ``*endptr``, aby wskazywał na "
201+
"początek ciągu, zgłoś wyjątek ValueError i zwróć ``-1.0`` ."
197202

198203
msgid ""
199204
"If ``s`` represents a value that is too large to store in a float (for "
@@ -209,11 +214,15 @@ msgid ""
209214
"If any other error occurs during the conversion (for example an out-of-"
210215
"memory error), set the appropriate Python exception and return ``-1.0``."
211216
msgstr ""
217+
"Jeżeli podczas konwersji wystąpi jakikolwiek inny błąd (na przykład błąd "
218+
"braku pamięci), ustaw odpowiedni wyjątek Pythona i zwracać ``-1.0``."
212219

213220
msgid ""
214221
"Convert a :c:expr:`double` *val* to a string using supplied *format_code*, "
215222
"*precision*, and *flags*."
216223
msgstr ""
224+
"Konwertuje :c:expr:`double` *val* na napis ciąg znaków przy użyciu "
225+
"dostarczonych *format_code*, *precision* i *flags*."
217226

218227
msgid ""
219228
"*format_code* must be one of ``'e'``, ``'E'``, ``'f'``, ``'F'``, ``'g'``, "

faq/programming.po

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -547,10 +547,14 @@ msgid ""
547547
"You could use a global variable containing a dictionary instead of the "
548548
"default value; it's a matter of taste."
549549
msgstr ""
550+
"Można użyć zmiennej globalnej zawierającej słownik zamiast wartości "
551+
"domyślnej; jest to kwestia gustu."
550552

551553
msgid ""
552554
"How can I pass optional or keyword parameters from one function to another?"
553555
msgstr ""
556+
"Jak można przekazać opcjonalne parametry lub argumenty nazwane z jednej "
557+
"funkcji do innej funkcji?"
554558

555559
msgid ""
556560
"Collect the arguments using the ``*`` and ``**`` specifiers in the "
@@ -579,17 +583,17 @@ msgid "the values ``42``, ``314``, and ``somevar`` are arguments."
579583
msgstr ""
580584

581585
msgid "Why did changing list 'y' also change list 'x'?"
582-
msgstr ""
586+
msgstr "Dlaczego zmiana listy „y” spowodowała również zmianę listy „x”?"
583587

584588
msgid "If you wrote code like::"
585-
msgstr ""
589+
msgstr "Jeśli napisałeś kod taki jak::"
586590

587591
msgid ""
588592
"you might be wondering why appending an element to ``y`` changed ``x`` too."
589593
msgstr ""
590594

591595
msgid "There are two factors that produce this result:"
592-
msgstr ""
596+
msgstr "Na ten wynik składają się dwa czynniki:"
593597

594598
msgid ""
595599
"Variables are simply names that refer to objects. Doing ``y = x`` doesn't "
@@ -600,7 +604,7 @@ msgstr ""
600604

601605
msgid ""
602606
"Lists are :term:`mutable`, which means that you can change their content."
603-
msgstr ""
607+
msgstr "Listy są :term:mutable, co oznacza, że można zmieniać ich zawartość."
604608

605609
msgid ""
606610
"After the call to :meth:`!append`, the content of the mutable object has "
@@ -640,6 +644,12 @@ msgid ""
640644
"mutates ``a_list``, whereas ``some_tuple += (1, 2, 3)`` and ``some_int += "
641645
"1`` create new objects)."
642646
msgstr ""
647+
"Jednak istnieje jedna klasa operacji, w której ta sama operacja może "
648+
"zachowywać się różnie w zależności od typu: operatory przypisania "
649+
"rozszerzonego. Na przykład 1``+=`` modyfikuje listy, ale nie krotki ani "
650+
"liczby całkowite (2``a_list`` += [1, 2, 3]`` jest równoważne 3``a_list``."
651+
"extend([1, 2, 3`)``i modyfikuje 4``a_list``, natomiast 5``some_tuple += (1, "
652+
"2, 3)`` oraz 6``some_int += 1`` tworzą nowe obiekty)."
643653

644654
msgid "In other words:"
645655
msgstr "Innymi słowami:"

0 commit comments

Comments
 (0)