Skip to content

Commit ab95c5e

Browse files
committed
update python-newest.library--constants/id.po with latest contents from transifex
1 parent fc3f3f0 commit ab95c5e

File tree

1 file changed

+66
-42
lines changed
  • python-newest.library--constants

1 file changed

+66
-42
lines changed
Lines changed: 66 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
# SOME DESCRIPTIVE TITLE.
2-
# Copyright (C) 2001-2020, Python Software Foundation
2+
# Copyright (C) 2001 Python Software Foundation
33
# This file is distributed under the same license as the Python package.
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
66
# Translators:
7-
# oon arfiandwi <oon.arfiandwi@gmail.com>, 2019
7+
# oon arfiandwi <oon.arfiandwi@gmail.com>, 2021
88
#
99
#, fuzzy
1010
msgid ""
1111
msgstr ""
12-
"Project-Id-Version: Python 3.9\n"
12+
"Project-Id-Version: Python 3.14\n"
1313
"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"
1818
"MIME-Version: 1.0\n"
1919
"Content-Type: text/plain; charset=UTF-8\n"
2020
"Content-Transfer-Encoding: 8bit\n"
@@ -43,98 +43,122 @@ msgstr ""
4343

4444
#: ../../library/constants.rst:22
4545
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."
5050
msgstr ""
5151

52-
#: ../../library/constants.rst:29
52+
#: ../../library/constants.rst:30
5353
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."
6062
msgstr ""
6163

62-
#: ../../library/constants.rst:38
64+
#: ../../library/constants.rst:40
6365
msgid ""
64-
"When a binary (or in-place) method returns ``NotImplemented`` the "
66+
"When a binary (or in-place) method returns :data:`!NotImplemented` the "
6567
"interpreter will try the reflected operation on the other type (or some "
6668
"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."
7073
msgstr ""
7174

72-
#: ../../library/constants.rst:45
75+
#: ../../library/constants.rst:47
7376
msgid "See :ref:`implementing-the-arithmetic-operations` for examples."
7477
msgstr ""
7578

76-
#: ../../library/constants.rst:49
79+
#: ../../library/constants.rst:51
7780
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."
8184
msgstr ""
8285

83-
#: ../../library/constants.rst:53
86+
#: ../../library/constants.rst:56
8487
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."
8889
msgstr ""
8990

90-
#: ../../library/constants.rst:62
91+
#: ../../library/constants.rst:59
9192
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."
9596
msgstr ""
9697

9798
#: ../../library/constants.rst:68
9899
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 ""
99108
"This constant is true if Python was not started with an :option:`-O` option."
100109
" See also the :keyword:`assert` statement."
101110
msgstr ""
102111

103-
#: ../../library/constants.rst:74
112+
#: ../../library/constants.rst:81
104113
msgid ""
105114
"The names :data:`None`, :data:`False`, :data:`True` and :data:`__debug__` "
106115
"cannot be reassigned (assignments to them, even as an attribute name, raise "
107116
":exc:`SyntaxError`), so they can be considered \"true\" constants."
108117
msgstr ""
109118

110-
#: ../../library/constants.rst:80
119+
#: ../../library/constants.rst:89
111120
msgid "Constants added by the :mod:`site` module"
112121
msgstr "Konstanta yang ditambahkan oleh modul :mod:`site`"
113122

114-
#: ../../library/constants.rst:82
123+
#: ../../library/constants.rst:91
115124
msgid ""
116125
"The :mod:`site` module (which is imported automatically during startup, "
117126
"except if the :option:`-S` command-line option is given) adds several "
118127
"constants to the built-in namespace. They are useful for the interactive "
119128
"interpreter shell and should not be used in programs."
120129
msgstr ""
121130

122-
#: ../../library/constants.rst:90
131+
#: ../../library/constants.rst:99
123132
msgid ""
124133
"Objects that when printed, print a message like \"Use quit() or Ctrl-D (i.e."
125134
" EOF) to exit\", and when called, raise :exc:`SystemExit` with the specified"
126135
" exit code."
127136
msgstr ""
128137

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
130146
msgid ""
131147
"Objects that when printed or called, print the text of copyright or credits,"
132148
" respectively."
133149
msgstr ""
134150

135-
#: ../../library/constants.rst:102
151+
#: ../../library/constants.rst:118
136152
msgid ""
137153
"Object that when printed, prints the message \"Type license() to see the "
138154
"full license text\", and when called, displays the full license text in a "
139155
"pager-like fashion (one screen at a time)."
140156
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

Comments
 (0)