|
| 1 | +# SOME DESCRIPTIVE TITLE. |
| 2 | +# Copyright (C) 2001 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 | +# Rafael Fontenelle <rffontenelle@gmail.com>, 2026 |
| 8 | +# |
| 9 | +#, fuzzy |
| 10 | +msgid "" |
| 11 | +msgstr "" |
| 12 | +"Project-Id-Version: Python 3.15\n" |
| 13 | +"Report-Msgid-Bugs-To: \n" |
| 14 | +"POT-Creation-Date: 2026-09-13 17:08+0000\n" |
| 15 | +"PO-Revision-Date: 2026-09-13 17:09+0000\n" |
| 16 | +"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2026\n" |
| 17 | +"Language-Team: Polish (https://app.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) && " |
| 23 | +"(n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && " |
| 24 | +"n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" |
| 25 | + |
| 26 | +msgid "Built-in Constants" |
| 27 | +msgstr "Wbudowane stałe" |
| 28 | + |
| 29 | +msgid "A small number of constants live in the built-in namespace. They are:" |
| 30 | +msgstr "We wbudowanej przestrzeni nazw znajduje się kilka stałych. Są to:" |
| 31 | + |
| 32 | +msgid "" |
| 33 | +"The false value of the :class:`bool` type. Assignments to ``False`` are " |
| 34 | +"illegal and raise a :exc:`SyntaxError`." |
| 35 | +msgstr "" |
| 36 | +"Wartość \"fałsz\" typu :class:`bool`. Przypisania do ``False`` są " |
| 37 | +"niedozwolone i rzucają wyjątkiem :exc:`SyntaxError`." |
| 38 | + |
| 39 | +msgid "" |
| 40 | +"The true value of the :class:`bool` type. Assignments to ``True`` are " |
| 41 | +"illegal and raise a :exc:`SyntaxError`." |
| 42 | +msgstr "" |
| 43 | +"Wartość \"prawda\" typu :class:`bool`. Przypisania do ``True`` są " |
| 44 | +"niedozwolone i rzucają wyjątkiem :exc:`SyntaxError`." |
| 45 | + |
| 46 | +msgid "" |
| 47 | +"An object frequently used to represent the absence of a value, as when " |
| 48 | +"default arguments are not passed to a function. Assignments to ``None`` are " |
| 49 | +"illegal and raise a :exc:`SyntaxError`. ``None`` is the sole instance of " |
| 50 | +"the :class:`~types.NoneType` type." |
| 51 | +msgstr "" |
| 52 | + |
| 53 | +msgid "" |
| 54 | +"A special value which should be returned by the binary special methods (e." |
| 55 | +"g. :meth:`~object.__eq__`, :meth:`~object.__lt__`, :meth:`~object.__add__`, :" |
| 56 | +"meth:`~object.__rsub__`, etc.) to indicate that the operation is not " |
| 57 | +"implemented with respect to the other type; may be returned by the in-place " |
| 58 | +"binary special methods (e.g. :meth:`~object.__imul__`, :meth:`~object." |
| 59 | +"__iand__`, etc.) for the same purpose. It should not be evaluated in a " |
| 60 | +"boolean context. :data:`!NotImplemented` is the sole instance of the :class:" |
| 61 | +"`types.NotImplementedType` type." |
| 62 | +msgstr "" |
| 63 | + |
| 64 | +msgid "" |
| 65 | +"When a binary (or in-place) method returns :data:`!NotImplemented` the " |
| 66 | +"interpreter will try the reflected operation on the other type (or some " |
| 67 | +"other fallback, depending on the operator). If all attempts return :data:`!" |
| 68 | +"NotImplemented`, the interpreter will raise an appropriate exception. " |
| 69 | +"Incorrectly returning :data:`!NotImplemented` will result in a misleading " |
| 70 | +"error message or the :data:`!NotImplemented` value being returned to Python " |
| 71 | +"code." |
| 72 | +msgstr "" |
| 73 | +"Gdy metoda binarna (albo operująca w miejscu) zwróci :data:`!" |
| 74 | +"NotImplemented`, interpreter spróbuje wykonać odpowiadającą jej operację na " |
| 75 | +"drugim typie (albo innego mechanizmu rezerwowego, w zależności od rodzaju " |
| 76 | +"operatora). Dopiero gdy wszystkie próby zwrócą :data:`!NotImplemented`, " |
| 77 | +"interpreter rzuci odpowiednim wyjątkiem. Nieprawidłowe zwracanie :data:`!" |
| 78 | +"NotImplemented` spowoduje wyświetlenie mylnego komunikatu błędu lub też " |
| 79 | +"zwrócenie wartości :data:`!NotImplemented` do kodu Pythona." |
| 80 | + |
| 81 | +msgid "See :ref:`implementing-the-arithmetic-operations` for examples." |
| 82 | +msgstr "Zobacz przykłady w :ref:`implementing-the-arithmetic-operations`." |
| 83 | + |
| 84 | +msgid "" |
| 85 | +":data:`!NotImplemented` and :exc:`!NotImplementedError` are not " |
| 86 | +"interchangeable. This constant should only be used as described above; see :" |
| 87 | +"exc:`NotImplementedError` for details on correct usage of the exception." |
| 88 | +msgstr "" |
| 89 | + |
| 90 | +msgid "Evaluating :data:`!NotImplemented` in a boolean context was deprecated." |
| 91 | +msgstr "" |
| 92 | + |
| 93 | +msgid "" |
| 94 | +"Evaluating :data:`!NotImplemented` in a boolean context now raises a :exc:" |
| 95 | +"`TypeError`. It previously evaluated to :const:`True` and emitted a :exc:" |
| 96 | +"`DeprecationWarning` since Python 3.9." |
| 97 | +msgstr "" |
| 98 | + |
| 99 | +msgid "" |
| 100 | +"The same as the ellipsis literal \"``...``\", an object frequently used to " |
| 101 | +"indicate that something is omitted. Assignment to ``Ellipsis`` is possible, " |
| 102 | +"but assignment to ``...`` raises a :exc:`SyntaxError`. ``Ellipsis`` is the " |
| 103 | +"sole instance of the :class:`types.EllipsisType` type." |
| 104 | +msgstr "" |
| 105 | + |
| 106 | +msgid "" |
| 107 | +"This constant is true if Python was not started with an :option:`-O` option. " |
| 108 | +"See also the :keyword:`assert` statement." |
| 109 | +msgstr "" |
| 110 | +"Ta stała ma wartość True jeśli Python nie został uruchomiony z opcją :option:" |
| 111 | +"`-O`. Zobacz także deklarację :keyword:`assert`." |
| 112 | + |
| 113 | +msgid "" |
| 114 | +"The names :data:`None`, :data:`False`, :data:`True` and :data:`__debug__` " |
| 115 | +"cannot be reassigned (assignments to them, even as an attribute name, raise :" |
| 116 | +"exc:`SyntaxError`), so they can be considered \"true\" constants." |
| 117 | +msgstr "" |
| 118 | +"Nazwy :data:`None`, :data:`False`, :data:`True` oraz :data:`__debug__` nie " |
| 119 | +"mogą być przypisane ponownie (przypisania do nich, nawet jako nazwa " |
| 120 | +"atrybutu, rzucają :exc:`SyntaxError`), więc mogą być uważane za „prawdziwe” " |
| 121 | +"stałe." |
| 122 | + |
| 123 | +msgid "Constants added by the :mod:`site` module" |
| 124 | +msgstr "Stałe dodane przez moduł :mod:`site`" |
| 125 | + |
| 126 | +msgid "" |
| 127 | +"The :mod:`site` module (which is imported automatically during startup, " |
| 128 | +"except if the :option:`-S` command-line option is given) adds several " |
| 129 | +"constants to the built-in namespace. They are useful for the interactive " |
| 130 | +"interpreter shell and should not be used in programs." |
| 131 | +msgstr "" |
| 132 | +"Moduł :mod:`site` (który jest importowany automatycznie podczas " |
| 133 | +"uruchamiania, z wyjątkiem sytuacji, gdy podano opcję wiersza poleceń :option:" |
| 134 | +"`-S`) dodaje kilka stałych do wbudowanej przestrzeni nazw. Są one przydatne " |
| 135 | +"w interaktywnej powłoce interpretera i nie powinny być używane w programach." |
| 136 | + |
| 137 | +msgid "" |
| 138 | +"Objects that when printed, print a message like \"Use quit() or Ctrl-D (i.e. " |
| 139 | +"EOF) to exit\", and when accessed directly in the interactive interpreter or " |
| 140 | +"called as functions, raise :exc:`SystemExit` with the specified exit code." |
| 141 | +msgstr "" |
| 142 | + |
| 143 | +msgid "" |
| 144 | +"Object that when printed, prints the message \"Type help() for interactive " |
| 145 | +"help, or help(object) for help about object.\", and when accessed directly " |
| 146 | +"in the interactive interpreter, invokes the built-in help system (see :func:" |
| 147 | +"`help`)." |
| 148 | +msgstr "" |
| 149 | + |
| 150 | +msgid "" |
| 151 | +"Objects that when printed or called, print the text of copyright or credits, " |
| 152 | +"respectively." |
| 153 | +msgstr "" |
| 154 | +"Obiekty, które, gdy wypisane lub wywołane - wyświetlają treść odpowiednio " |
| 155 | +"praw autorskich i słów uznania." |
| 156 | + |
| 157 | +msgid "" |
| 158 | +"Object that when printed, prints the message \"Type license() to see the " |
| 159 | +"full license text\", and when called, displays the full license text in a " |
| 160 | +"pager-like fashion (one screen at a time)." |
| 161 | +msgstr "" |
| 162 | +"Obiekt, który, gdy jego nazwa zostanie wpisana w powłoce - wyświetla " |
| 163 | +"wiadomość \"Type license() to see the full license text\", a gdy wywołany - " |
| 164 | +"wyświetla pełny tekst licencji w sposób podobny do pagera (jeden ekran na " |
| 165 | +"raz)." |
| 166 | + |
| 167 | +msgid "..." |
| 168 | +msgstr "..." |
| 169 | + |
| 170 | +msgid "ellipsis literal" |
| 171 | +msgstr "Literalny zapis wielokropka" |
0 commit comments