|
| 1 | +# SOME DESCRIPTIVE TITLE. |
| 2 | +# Copyright (C) 2001-2025, Python Software Foundation |
| 3 | +# This file is distributed under the same license as the Python package. |
| 4 | +# FIRST AUTHOR <EMAIL@ADDRESS>, 2025. |
| 5 | +# |
| 6 | +#, fuzzy |
| 7 | +msgid "" |
| 8 | +msgstr "" |
| 9 | +"Project-Id-Version: Python 3.13\n" |
| 10 | +"Report-Msgid-Bugs-To: \n" |
| 11 | +"POT-Creation-Date: 2025-03-04 13:08+0200\n" |
| 12 | +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
| 13 | +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
| 14 | +"Language: ro\n" |
| 15 | +"Language-Team: ro <LL@li.org>\n" |
| 16 | +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100" |
| 17 | +" < 20)) ? 1 : 2);\n" |
| 18 | +"MIME-Version: 1.0\n" |
| 19 | +"Content-Type: text/plain; charset=utf-8\n" |
| 20 | +"Content-Transfer-Encoding: 8bit\n" |
| 21 | +"Generated-By: Babel 2.17.0\n" |
| 22 | + |
| 23 | +#: ../../library/constants.rst:4 |
| 24 | +msgid "Built-in Constants" |
| 25 | +msgstr "" |
| 26 | + |
| 27 | +#: ../../library/constants.rst:6 |
| 28 | +msgid "A small number of constants live in the built-in namespace. They are:" |
| 29 | +msgstr "" |
| 30 | + |
| 31 | +#: ../../library/constants.rst:10 |
| 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 | + |
| 37 | +#: ../../library/constants.rst:16 |
| 38 | +msgid "" |
| 39 | +"The true value of the :class:`bool` type. Assignments to ``True`` are " |
| 40 | +"illegal and raise a :exc:`SyntaxError`." |
| 41 | +msgstr "" |
| 42 | + |
| 43 | +#: ../../library/constants.rst:22 |
| 44 | +msgid "" |
| 45 | +"An object frequently used to represent the absence of a value, as when " |
| 46 | +"default arguments are not passed to a function. Assignments to ``None`` " |
| 47 | +"are illegal and raise a :exc:`SyntaxError`. ``None`` is the sole instance" |
| 48 | +" of the :data:`~types.NoneType` type." |
| 49 | +msgstr "" |
| 50 | + |
| 51 | +#: ../../library/constants.rst:30 |
| 52 | +msgid "" |
| 53 | +"A special value which should be returned by the binary special methods " |
| 54 | +"(e.g. :meth:`~object.__eq__`, :meth:`~object.__lt__`, " |
| 55 | +":meth:`~object.__add__`, :meth:`~object.__rsub__`, etc.) to indicate that" |
| 56 | +" the operation is not implemented with respect to the other type; may be " |
| 57 | +"returned by the in-place binary special methods (e.g. " |
| 58 | +":meth:`~object.__imul__`, :meth:`~object.__iand__`, etc.) for the same " |
| 59 | +"purpose. It should not be evaluated in a boolean context. " |
| 60 | +":data:`!NotImplemented` is the sole instance of the " |
| 61 | +":data:`types.NotImplementedType` type." |
| 62 | +msgstr "" |
| 63 | + |
| 64 | +#: ../../library/constants.rst:40 |
| 65 | +msgid "" |
| 66 | +"When a binary (or in-place) method returns :data:`!NotImplemented` the " |
| 67 | +"interpreter will try the reflected operation on the other type (or some " |
| 68 | +"other fallback, depending on the operator). If all attempts return " |
| 69 | +":data:`!NotImplemented`, the interpreter will raise an appropriate " |
| 70 | +"exception. Incorrectly returning :data:`!NotImplemented` will result in a" |
| 71 | +" misleading error message or the :data:`!NotImplemented` value being " |
| 72 | +"returned to Python code." |
| 73 | +msgstr "" |
| 74 | + |
| 75 | +#: ../../library/constants.rst:47 |
| 76 | +msgid "See :ref:`implementing-the-arithmetic-operations` for examples." |
| 77 | +msgstr "" |
| 78 | + |
| 79 | +#: ../../library/constants.rst:51 |
| 80 | +msgid "" |
| 81 | +"``NotImplementedError`` and :data:`!NotImplemented` are not " |
| 82 | +"interchangeable, even though they have similar names and purposes. See " |
| 83 | +":exc:`NotImplementedError` for details on when to use it." |
| 84 | +msgstr "" |
| 85 | + |
| 86 | +#: ../../library/constants.rst:55 |
| 87 | +msgid "" |
| 88 | +"Evaluating :data:`!NotImplemented` in a boolean context is deprecated. " |
| 89 | +"While it currently evaluates as true, it will emit a " |
| 90 | +":exc:`DeprecationWarning`. It will raise a :exc:`TypeError` in a future " |
| 91 | +"version of Python." |
| 92 | +msgstr "" |
| 93 | + |
| 94 | +#: ../../library/constants.rst:64 |
| 95 | +msgid "" |
| 96 | +"The same as the ellipsis literal \"``...``\". Special value used mostly " |
| 97 | +"in conjunction with extended slicing syntax for user-defined container " |
| 98 | +"data types. ``Ellipsis`` is the sole instance of the " |
| 99 | +":data:`types.EllipsisType` type." |
| 100 | +msgstr "" |
| 101 | + |
| 102 | +#: ../../library/constants.rst:71 |
| 103 | +msgid "" |
| 104 | +"This constant is true if Python was not started with an :option:`-O` " |
| 105 | +"option. See also the :keyword:`assert` statement." |
| 106 | +msgstr "" |
| 107 | + |
| 108 | +#: ../../library/constants.rst:77 |
| 109 | +msgid "" |
| 110 | +"The names :data:`None`, :data:`False`, :data:`True` and :data:`__debug__`" |
| 111 | +" cannot be reassigned (assignments to them, even as an attribute name, " |
| 112 | +"raise :exc:`SyntaxError`), so they can be considered \"true\" constants." |
| 113 | +msgstr "" |
| 114 | + |
| 115 | +#: ../../library/constants.rst:85 |
| 116 | +msgid "Constants added by the :mod:`site` module" |
| 117 | +msgstr "" |
| 118 | + |
| 119 | +#: ../../library/constants.rst:87 |
| 120 | +msgid "" |
| 121 | +"The :mod:`site` module (which is imported automatically during startup, " |
| 122 | +"except if the :option:`-S` command-line option is given) adds several " |
| 123 | +"constants to the built-in namespace. They are useful for the interactive" |
| 124 | +" interpreter shell and should not be used in programs." |
| 125 | +msgstr "" |
| 126 | + |
| 127 | +#: ../../library/constants.rst:95 |
| 128 | +msgid "" |
| 129 | +"Objects that when printed, print a message like \"Use quit() or Ctrl-D " |
| 130 | +"(i.e. EOF) to exit\", and when called, raise :exc:`SystemExit` with the " |
| 131 | +"specified exit code." |
| 132 | +msgstr "" |
| 133 | + |
| 134 | +#: ../../library/constants.rst:102 |
| 135 | +msgid "" |
| 136 | +"Object that when printed, prints the message \"Type help() for " |
| 137 | +"interactive help, or help(object) for help about object.\", and when " |
| 138 | +"called, acts as described :func:`elsewhere <help>`." |
| 139 | +msgstr "" |
| 140 | + |
| 141 | +#: ../../library/constants.rst:109 |
| 142 | +msgid "" |
| 143 | +"Objects that when printed or called, print the text of copyright or " |
| 144 | +"credits, respectively." |
| 145 | +msgstr "" |
| 146 | + |
| 147 | +#: ../../library/constants.rst:114 |
| 148 | +msgid "" |
| 149 | +"Object that when printed, prints the message \"Type license() to see the " |
| 150 | +"full license text\", and when called, displays the full license text in a" |
| 151 | +" pager-like fashion (one screen at a time)." |
| 152 | +msgstr "" |
| 153 | + |
| 154 | +#: ../../library/constants.rst:61 |
| 155 | +msgid "..." |
| 156 | +msgstr "" |
| 157 | + |
| 158 | +#: ../../library/constants.rst:61 |
| 159 | +msgid "ellipsis literal" |
| 160 | +msgstr "" |
| 161 | + |
0 commit comments