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