Skip to content

Commit 223b233

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

2 files changed

Lines changed: 29 additions & 6 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: 20 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -646,10 +646,14 @@ msgid ""
646646
"You could use a global variable containing a dictionary instead of the "
647647
"default value; it's a matter of taste."
648648
msgstr ""
649+
"Można użyć zmiennej globalnej zawierającej słownik zamiast wartości "
650+
"domyślnej; jest to kwestia gustu."
649651

650652
msgid ""
651653
"How can I pass optional or keyword parameters from one function to another?"
652654
msgstr ""
655+
"Jak można przekazać opcjonalne parametry lub argumenty nazwane z jednej "
656+
"funkcji do innej funkcji?"
653657

654658
msgid ""
655659
"Collect the arguments using the ``*`` and ``**`` specifiers in the "
@@ -665,6 +669,8 @@ msgid ""
665669
" ...\n"
666670
" g(x, *args, **kwargs)"
667671
msgstr ""
672+
"def f(x, *args, **kwargs):...kwargs['width'] = '14.3c'...g(x, *args, "
673+
"**kwargs)"
668674

669675
msgid "What is the difference between arguments and parameters?"
670676
msgstr "Jaka jest różnica pomiędzy argumentami a parametrami?"
@@ -680,24 +686,24 @@ msgstr ""
680686
msgid ""
681687
"def func(foo, bar=None, **kwargs):\n"
682688
" pass"
683-
msgstr ""
689+
msgstr "def func(foo, bar=None, **kwargs):pass"
684690

685691
msgid ""
686692
"*foo*, *bar* and *kwargs* are parameters of ``func``. However, when calling "
687693
"``func``, for example::"
688694
msgstr ""
689695

690696
msgid "func(42, bar=314, extra=somevar)"
691-
msgstr ""
697+
msgstr "func(42, bar=314, extra=somevar)"
692698

693699
msgid "the values ``42``, ``314``, and ``somevar`` are arguments."
694700
msgstr ""
695701

696702
msgid "Why did changing list 'y' also change list 'x'?"
697-
msgstr ""
703+
msgstr "Dlaczego zmiana listy „y” spowodowała również zmianę listy „x”?"
698704

699705
msgid "If you wrote code like::"
700-
msgstr ""
706+
msgstr "Jeśli napisałeś kod taki jak::"
701707

702708
msgid ""
703709
">>> x = []\n"
@@ -721,7 +727,7 @@ msgid ""
721727
msgstr ""
722728

723729
msgid "There are two factors that produce this result:"
724-
msgstr ""
730+
msgstr "Na ten wynik składają się dwa czynniki:"
725731

726732
msgid ""
727733
"Variables are simply names that refer to objects. Doing ``y = x`` doesn't "
@@ -732,7 +738,7 @@ msgstr ""
732738

733739
msgid ""
734740
"Lists are :term:`mutable`, which means that you can change their content."
735-
msgstr ""
741+
msgstr "Listy są :term:mutable, co oznacza, że można zmieniać ich zawartość."
736742

737743
msgid ""
738744
"After the call to :meth:`!append`, the content of the mutable object has "
@@ -752,6 +758,8 @@ msgid ""
752758
">>> y\n"
753759
"5"
754760
msgstr ""
761+
">>> x = 5 # inty są niezmienne>>> y = x>>> x = x + 1 # 5 nie może być "
762+
"zmienione, tworzymy nowy obiekt>>> x6>>> y5"
755763

756764
msgid ""
757765
"we can see that in this case ``x`` and ``y`` are not equal anymore. This is "
@@ -782,6 +790,12 @@ msgid ""
782790
"mutates ``a_list``, whereas ``some_tuple += (1, 2, 3)`` and ``some_int += "
783791
"1`` create new objects)."
784792
msgstr ""
793+
"Jednak istnieje jedna klasa operacji, w której ta sama operacja może "
794+
"zachowywać się różnie w zależności od typu: operatory przypisania "
795+
"rozszerzonego. Na przykład 1``+=`` modyfikuje listy, ale nie krotki ani "
796+
"liczby całkowite (2``a_list`` += [1, 2, 3]`` jest równoważne 3``a_list``."
797+
"extend([1, 2, 3`)``i modyfikuje 4``a_list``, natomiast 5``some_tuple += (1, "
798+
"2, 3)`` oraz 6``some_int += 1`` tworzą nowe obiekty)."
785799

786800
msgid "In other words:"
787801
msgstr "Innymi słowami:"

0 commit comments

Comments
 (0)