|
| 1 | +# SOME DESCRIPTIVE TITLE. |
| 2 | +# Copyright (C) 2001-2021, Python Software Foundation |
| 3 | +# This file is distributed under the same license as the Python package. |
| 4 | +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. |
| 5 | +# |
| 6 | +# Translators: |
| 7 | +# gresm gresm, 2022 |
| 8 | +# |
| 9 | +#, fuzzy |
| 10 | +msgid "" |
| 11 | +msgstr "" |
| 12 | +"Project-Id-Version: Python 3.9\n" |
| 13 | +"Report-Msgid-Bugs-To: \n" |
| 14 | +"POT-Creation-Date: 2021-06-17 06:39+0000\n" |
| 15 | +"PO-Revision-Date: 2017-02-16 17:34+0000\n" |
| 16 | +"Last-Translator: gresm gresm, 2022\n" |
| 17 | +"Language-Team: Polish (https://www.transifex.com/python-doc/teams/5390/pl/)\n" |
| 18 | +"MIME-Version: 1.0\n" |
| 19 | +"Content-Type: text/plain; charset=UTF-8\n" |
| 20 | +"Content-Transfer-Encoding: 8bit\n" |
| 21 | +"Language: pl\n" |
| 22 | +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" |
| 23 | +"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" |
| 24 | +"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" |
| 25 | + |
| 26 | +msgid "Complex Number Objects" |
| 27 | +msgstr "" |
| 28 | + |
| 29 | +msgid "" |
| 30 | +"Python's complex number objects are implemented as two distinct types when " |
| 31 | +"viewed from the C API: one is the Python object exposed to Python programs, " |
| 32 | +"and the other is a C structure which represents the actual complex number " |
| 33 | +"value. The API provides functions for working with both." |
| 34 | +msgstr "" |
| 35 | +"Pythonowe liczby zespolone są stworzone w implementacji C jako dwa oddzielne " |
| 36 | +"typy: jeden jest strukturą w C która reprezentuje prawdziwe liczby " |
| 37 | +"zespolone, a drugi ujawnia tą strukturę dla Pythonowego kodu. API ma funkcje " |
| 38 | +"do operacji na obydwu typach." |
| 39 | + |
| 40 | +msgid "Complex Numbers as C Structures" |
| 41 | +msgstr "Liczby zespolone jako struktury w C" |
| 42 | + |
| 43 | +msgid "" |
| 44 | +"Note that the functions which accept these structures as parameters and " |
| 45 | +"return them as results do so *by value* rather than dereferencing them " |
| 46 | +"through pointers. This is consistent throughout the API." |
| 47 | +msgstr "" |
| 48 | + |
| 49 | +msgid "" |
| 50 | +"The C structure which corresponds to the value portion of a Python complex " |
| 51 | +"number object. Most of the functions for dealing with complex number " |
| 52 | +"objects use structures of this type as input or output values, as " |
| 53 | +"appropriate. It is defined as::" |
| 54 | +msgstr "" |
| 55 | + |
| 56 | +msgid "" |
| 57 | +"Return the sum of two complex numbers, using the C :c:type:`Py_complex` " |
| 58 | +"representation." |
| 59 | +msgstr "" |
| 60 | + |
| 61 | +msgid "" |
| 62 | +"Return the difference between two complex numbers, using the C :c:type:" |
| 63 | +"`Py_complex` representation." |
| 64 | +msgstr "" |
| 65 | + |
| 66 | +msgid "" |
| 67 | +"Return the negation of the complex number *num*, using the C :c:type:" |
| 68 | +"`Py_complex` representation." |
| 69 | +msgstr "" |
| 70 | + |
| 71 | +msgid "" |
| 72 | +"Return the product of two complex numbers, using the C :c:type:`Py_complex` " |
| 73 | +"representation." |
| 74 | +msgstr "" |
| 75 | + |
| 76 | +msgid "" |
| 77 | +"Return the quotient of two complex numbers, using the C :c:type:`Py_complex` " |
| 78 | +"representation." |
| 79 | +msgstr "" |
| 80 | + |
| 81 | +msgid "" |
| 82 | +"If *divisor* is null, this method returns zero and sets :c:data:`errno` to :" |
| 83 | +"c:data:`EDOM`." |
| 84 | +msgstr "" |
| 85 | + |
| 86 | +msgid "" |
| 87 | +"Return the exponentiation of *num* by *exp*, using the C :c:type:" |
| 88 | +"`Py_complex` representation." |
| 89 | +msgstr "" |
| 90 | + |
| 91 | +msgid "" |
| 92 | +"If *num* is null and *exp* is not a positive real number, this method " |
| 93 | +"returns zero and sets :c:data:`errno` to :c:data:`EDOM`." |
| 94 | +msgstr "" |
| 95 | + |
| 96 | +msgid "Complex Numbers as Python Objects" |
| 97 | +msgstr "" |
| 98 | + |
| 99 | +msgid "" |
| 100 | +"This subtype of :c:type:`PyObject` represents a Python complex number object." |
| 101 | +msgstr "" |
| 102 | + |
| 103 | +msgid "" |
| 104 | +"This instance of :c:type:`PyTypeObject` represents the Python complex number " |
| 105 | +"type. It is the same object as :class:`complex` in the Python layer." |
| 106 | +msgstr "" |
| 107 | + |
| 108 | +msgid "" |
| 109 | +"Return true if its argument is a :c:type:`PyComplexObject` or a subtype of :" |
| 110 | +"c:type:`PyComplexObject`. This function always succeeds." |
| 111 | +msgstr "" |
| 112 | + |
| 113 | +msgid "" |
| 114 | +"Return true if its argument is a :c:type:`PyComplexObject`, but not a " |
| 115 | +"subtype of :c:type:`PyComplexObject`. This function always succeeds." |
| 116 | +msgstr "" |
| 117 | + |
| 118 | +msgid "" |
| 119 | +"Create a new Python complex number object from a C :c:type:`Py_complex` " |
| 120 | +"value." |
| 121 | +msgstr "" |
| 122 | + |
| 123 | +msgid "Return a new :c:type:`PyComplexObject` object from *real* and *imag*." |
| 124 | +msgstr "" |
| 125 | + |
| 126 | +msgid "Return the real part of *op* as a C :c:type:`double`." |
| 127 | +msgstr "" |
| 128 | + |
| 129 | +msgid "Return the imaginary part of *op* as a C :c:type:`double`." |
| 130 | +msgstr "" |
| 131 | + |
| 132 | +msgid "Return the :c:type:`Py_complex` value of the complex number *op*." |
| 133 | +msgstr "" |
| 134 | + |
| 135 | +msgid "" |
| 136 | +"If *op* is not a Python complex number object but has a :meth:`__complex__` " |
| 137 | +"method, this method will first be called to convert *op* to a Python complex " |
| 138 | +"number object. If ``__complex__()`` is not defined then it falls back to :" |
| 139 | +"meth:`__float__`. If ``__float__()`` is not defined then it falls back to :" |
| 140 | +"meth:`__index__`. Upon failure, this method returns ``-1.0`` as a real " |
| 141 | +"value." |
| 142 | +msgstr "" |
| 143 | + |
| 144 | +msgid "Use :meth:`__index__` if available." |
| 145 | +msgstr "" |
0 commit comments