Skip to content

Commit 51ba398

Browse files
committed
update python-newest.c-api--datetime/id.po with latest contents from transifex
1 parent 8d2de88 commit 51ba398

File tree

1 file changed

+119
-60
lines changed
  • python-newest.c-api--datetime

1 file changed

+119
-60
lines changed
Lines changed: 119 additions & 60 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
# SOME DESCRIPTIVE TITLE.
2-
# Copyright (C) 2001-2021, Python Software Foundation
2+
# Copyright (C) 2001-2025, 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-
# LIQRGV <septianhari@gmail.com>, 2019
7+
# LIQRGV <septianhari@gmail.com>, 2021
88
#
99
#, fuzzy
1010
msgid ""
1111
msgstr ""
12-
"Project-Id-Version: Python 3.9\n"
12+
"Project-Id-Version: Python 3.13\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2021-01-07 05:06+0000\n"
15-
"PO-Revision-Date: 2017-02-16 17:34+0000\n"
16-
"Last-Translator: LIQRGV <septianhari@gmail.com>, 2019\n"
17-
"Language-Team: Indonesian (https://www.transifex.com/python-doc/teams/5390/id/)\n"
14+
"POT-Creation-Date: 2025-04-25 14:19+0000\n"
15+
"PO-Revision-Date: 2021-06-28 00:48+0000\n"
16+
"Last-Translator: LIQRGV <septianhari@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"
@@ -30,226 +30,285 @@ msgid ""
3030
"Various date and time objects are supplied by the :mod:`datetime` module. "
3131
"Before using any of these functions, the header file :file:`datetime.h` must"
3232
" be included in your source (note that this is not included by "
33-
":file:`Python.h`), and the macro :c:macro:`PyDateTime_IMPORT` must be "
33+
":file:`Python.h`), and the macro :c:macro:`!PyDateTime_IMPORT` must be "
3434
"invoked, usually as part of the module initialisation function. The macro "
3535
"puts a pointer to a C structure into a static variable, "
36-
":c:data:`PyDateTimeAPI`, that is used by the following macros."
36+
":c:data:`!PyDateTimeAPI`, that is used by the following macros."
3737
msgstr ""
3838

39-
#: ../../c-api/datetime.rst:16
39+
#: ../../c-api/datetime.rst:18
40+
msgid "This subtype of :c:type:`PyObject` represents a Python date object."
41+
msgstr ""
42+
43+
#: ../../c-api/datetime.rst:22
44+
msgid ""
45+
"This subtype of :c:type:`PyObject` represents a Python datetime object."
46+
msgstr ""
47+
48+
#: ../../c-api/datetime.rst:26
49+
msgid "This subtype of :c:type:`PyObject` represents a Python time object."
50+
msgstr ""
51+
52+
#: ../../c-api/datetime.rst:30
53+
msgid ""
54+
"This subtype of :c:type:`PyObject` represents the difference between two "
55+
"datetime values."
56+
msgstr ""
57+
58+
#: ../../c-api/datetime.rst:34
59+
msgid ""
60+
"This instance of :c:type:`PyTypeObject` represents the Python date type; it "
61+
"is the same object as :class:`datetime.date` in the Python layer."
62+
msgstr ""
63+
64+
#: ../../c-api/datetime.rst:39
65+
msgid ""
66+
"This instance of :c:type:`PyTypeObject` represents the Python datetime type;"
67+
" it is the same object as :class:`datetime.datetime` in the Python layer."
68+
msgstr ""
69+
70+
#: ../../c-api/datetime.rst:44
71+
msgid ""
72+
"This instance of :c:type:`PyTypeObject` represents the Python time type; it "
73+
"is the same object as :class:`datetime.time` in the Python layer."
74+
msgstr ""
75+
76+
#: ../../c-api/datetime.rst:49
77+
msgid ""
78+
"This instance of :c:type:`PyTypeObject` represents Python type for the "
79+
"difference between two datetime values; it is the same object as "
80+
":class:`datetime.timedelta` in the Python layer."
81+
msgstr ""
82+
83+
#: ../../c-api/datetime.rst:55
84+
msgid ""
85+
"This instance of :c:type:`PyTypeObject` represents the Python time zone info"
86+
" type; it is the same object as :class:`datetime.tzinfo` in the Python "
87+
"layer."
88+
msgstr ""
89+
90+
#: ../../c-api/datetime.rst:59
4091
msgid "Macro for access to the UTC singleton:"
4192
msgstr ""
4293

43-
#: ../../c-api/datetime.rst:20
94+
#: ../../c-api/datetime.rst:63
4495
msgid ""
4596
"Returns the time zone singleton representing UTC, the same object as "
4697
":attr:`datetime.timezone.utc`."
4798
msgstr ""
4899

49-
#: ../../c-api/datetime.rst:26
100+
#: ../../c-api/datetime.rst:69
50101
msgid "Type-check macros:"
51102
msgstr ""
52103

53-
#: ../../c-api/datetime.rst:30
104+
#: ../../c-api/datetime.rst:73
54105
msgid ""
55106
"Return true if *ob* is of type :c:data:`PyDateTime_DateType` or a subtype of"
56-
" :c:data:`PyDateTime_DateType`. *ob* must not be ``NULL``. This function "
107+
" :c:data:`!PyDateTime_DateType`. *ob* must not be ``NULL``. This function "
57108
"always succeeds."
58109
msgstr ""
59110

60-
#: ../../c-api/datetime.rst:37
111+
#: ../../c-api/datetime.rst:80
61112
msgid ""
62113
"Return true if *ob* is of type :c:data:`PyDateTime_DateType`. *ob* must not "
63114
"be ``NULL``. This function always succeeds."
64115
msgstr ""
65116

66-
#: ../../c-api/datetime.rst:43
117+
#: ../../c-api/datetime.rst:86
67118
msgid ""
68119
"Return true if *ob* is of type :c:data:`PyDateTime_DateTimeType` or a "
69-
"subtype of :c:data:`PyDateTime_DateTimeType`. *ob* must not be ``NULL``. "
120+
"subtype of :c:data:`!PyDateTime_DateTimeType`. *ob* must not be ``NULL``. "
70121
"This function always succeeds."
71122
msgstr ""
72123

73-
#: ../../c-api/datetime.rst:50
124+
#: ../../c-api/datetime.rst:93
74125
msgid ""
75126
"Return true if *ob* is of type :c:data:`PyDateTime_DateTimeType`. *ob* must "
76127
"not be ``NULL``. This function always succeeds."
77128
msgstr ""
78129

79-
#: ../../c-api/datetime.rst:56
130+
#: ../../c-api/datetime.rst:99
80131
msgid ""
81132
"Return true if *ob* is of type :c:data:`PyDateTime_TimeType` or a subtype of"
82-
" :c:data:`PyDateTime_TimeType`. *ob* must not be ``NULL``. This function "
133+
" :c:data:`!PyDateTime_TimeType`. *ob* must not be ``NULL``. This function "
83134
"always succeeds."
84135
msgstr ""
85136

86-
#: ../../c-api/datetime.rst:63
137+
#: ../../c-api/datetime.rst:106
87138
msgid ""
88139
"Return true if *ob* is of type :c:data:`PyDateTime_TimeType`. *ob* must not "
89140
"be ``NULL``. This function always succeeds."
90141
msgstr ""
91142

92-
#: ../../c-api/datetime.rst:69
143+
#: ../../c-api/datetime.rst:112
93144
msgid ""
94145
"Return true if *ob* is of type :c:data:`PyDateTime_DeltaType` or a subtype "
95-
"of :c:data:`PyDateTime_DeltaType`. *ob* must not be ``NULL``. This "
146+
"of :c:data:`!PyDateTime_DeltaType`. *ob* must not be ``NULL``. This "
96147
"function always succeeds."
97148
msgstr ""
98149

99-
#: ../../c-api/datetime.rst:76
150+
#: ../../c-api/datetime.rst:119
100151
msgid ""
101152
"Return true if *ob* is of type :c:data:`PyDateTime_DeltaType`. *ob* must not"
102153
" be ``NULL``. This function always succeeds."
103154
msgstr ""
104155

105-
#: ../../c-api/datetime.rst:82
156+
#: ../../c-api/datetime.rst:125
106157
msgid ""
107158
"Return true if *ob* is of type :c:data:`PyDateTime_TZInfoType` or a subtype "
108-
"of :c:data:`PyDateTime_TZInfoType`. *ob* must not be ``NULL``. This "
159+
"of :c:data:`!PyDateTime_TZInfoType`. *ob* must not be ``NULL``. This "
109160
"function always succeeds."
110161
msgstr ""
111162

112-
#: ../../c-api/datetime.rst:89
163+
#: ../../c-api/datetime.rst:132
113164
msgid ""
114165
"Return true if *ob* is of type :c:data:`PyDateTime_TZInfoType`. *ob* must "
115166
"not be ``NULL``. This function always succeeds."
116167
msgstr ""
117168

118-
#: ../../c-api/datetime.rst:93
169+
#: ../../c-api/datetime.rst:136
119170
msgid "Macros to create objects:"
120171
msgstr ""
121172

122-
#: ../../c-api/datetime.rst:97
173+
#: ../../c-api/datetime.rst:140
123174
msgid ""
124175
"Return a :class:`datetime.date` object with the specified year, month and "
125176
"day."
126177
msgstr ""
127178

128-
#: ../../c-api/datetime.rst:102
179+
#: ../../c-api/datetime.rst:145
129180
msgid ""
130181
"Return a :class:`datetime.datetime` object with the specified year, month, "
131182
"day, hour, minute, second and microsecond."
132183
msgstr ""
133184

134-
#: ../../c-api/datetime.rst:108
185+
#: ../../c-api/datetime.rst:151
135186
msgid ""
136187
"Return a :class:`datetime.datetime` object with the specified year, month, "
137188
"day, hour, minute, second, microsecond and fold."
138189
msgstr ""
139190

140-
#: ../../c-api/datetime.rst:116
191+
#: ../../c-api/datetime.rst:159
141192
msgid ""
142193
"Return a :class:`datetime.time` object with the specified hour, minute, "
143194
"second and microsecond."
144195
msgstr ""
145196

146-
#: ../../c-api/datetime.rst:122
197+
#: ../../c-api/datetime.rst:165
147198
msgid ""
148199
"Return a :class:`datetime.time` object with the specified hour, minute, "
149200
"second, microsecond and fold."
150201
msgstr ""
151202

152-
#: ../../c-api/datetime.rst:130
203+
#: ../../c-api/datetime.rst:173
153204
msgid ""
154205
"Return a :class:`datetime.timedelta` object representing the given number of"
155206
" days, seconds and microseconds. Normalization is performed so that the "
156207
"resulting number of microseconds and seconds lie in the ranges documented "
157208
"for :class:`datetime.timedelta` objects."
158209
msgstr ""
159210

160-
#: ../../c-api/datetime.rst:137
211+
#: ../../c-api/datetime.rst:181
161212
msgid ""
162213
"Return a :class:`datetime.timezone` object with an unnamed fixed offset "
163214
"represented by the *offset* argument."
164215
msgstr ""
165216

166-
#: ../../c-api/datetime.rst:144
217+
#: ../../c-api/datetime.rst:189
167218
msgid ""
168219
"Return a :class:`datetime.timezone` object with a fixed offset represented "
169220
"by the *offset* argument and with tzname *name*."
170221
msgstr ""
171222

172-
#: ../../c-api/datetime.rst:150
223+
#: ../../c-api/datetime.rst:195
173224
msgid ""
174225
"Macros to extract fields from date objects. The argument must be an "
175-
"instance of :c:data:`PyDateTime_Date`, including subclasses (such as "
176-
":c:data:`PyDateTime_DateTime`). The argument must not be ``NULL``, and the "
226+
"instance of :c:type:`PyDateTime_Date`, including subclasses (such as "
227+
":c:type:`PyDateTime_DateTime`). The argument must not be ``NULL``, and the "
177228
"type is not checked:"
178229
msgstr ""
179230

180-
#: ../../c-api/datetime.rst:157
231+
#: ../../c-api/datetime.rst:202
181232
msgid "Return the year, as a positive int."
182233
msgstr ""
183234

184-
#: ../../c-api/datetime.rst:162
235+
#: ../../c-api/datetime.rst:207
185236
msgid "Return the month, as an int from 1 through 12."
186237
msgstr ""
187238

188-
#: ../../c-api/datetime.rst:167
239+
#: ../../c-api/datetime.rst:212
189240
msgid "Return the day, as an int from 1 through 31."
190241
msgstr ""
191242

192-
#: ../../c-api/datetime.rst:170
243+
#: ../../c-api/datetime.rst:215
193244
msgid ""
194245
"Macros to extract fields from datetime objects. The argument must be an "
195-
"instance of :c:data:`PyDateTime_DateTime`, including subclasses. The "
246+
"instance of :c:type:`PyDateTime_DateTime`, including subclasses. The "
196247
"argument must not be ``NULL``, and the type is not checked:"
197248
msgstr ""
198249

199-
#: ../../c-api/datetime.rst:176 ../../c-api/datetime.rst:200
250+
#: ../../c-api/datetime.rst:221 ../../c-api/datetime.rst:259
200251
msgid "Return the hour, as an int from 0 through 23."
201252
msgstr ""
202253

203-
#: ../../c-api/datetime.rst:181 ../../c-api/datetime.rst:205
254+
#: ../../c-api/datetime.rst:226 ../../c-api/datetime.rst:264
204255
msgid "Return the minute, as an int from 0 through 59."
205256
msgstr ""
206257

207-
#: ../../c-api/datetime.rst:186 ../../c-api/datetime.rst:210
258+
#: ../../c-api/datetime.rst:231 ../../c-api/datetime.rst:269
208259
msgid "Return the second, as an int from 0 through 59."
209260
msgstr ""
210261

211-
#: ../../c-api/datetime.rst:191 ../../c-api/datetime.rst:215
262+
#: ../../c-api/datetime.rst:236 ../../c-api/datetime.rst:274
212263
msgid "Return the microsecond, as an int from 0 through 999999."
213264
msgstr ""
214265

215-
#: ../../c-api/datetime.rst:194
266+
#: ../../c-api/datetime.rst:241 ../../c-api/datetime.rst:279
267+
msgid "Return the fold, as an int from 0 through 1."
268+
msgstr ""
269+
270+
#: ../../c-api/datetime.rst:248 ../../c-api/datetime.rst:286
271+
msgid "Return the tzinfo (which may be ``None``)."
272+
msgstr ""
273+
274+
#: ../../c-api/datetime.rst:253
216275
msgid ""
217276
"Macros to extract fields from time objects. The argument must be an "
218-
"instance of :c:data:`PyDateTime_Time`, including subclasses. The argument "
277+
"instance of :c:type:`PyDateTime_Time`, including subclasses. The argument "
219278
"must not be ``NULL``, and the type is not checked:"
220279
msgstr ""
221280

222-
#: ../../c-api/datetime.rst:218
281+
#: ../../c-api/datetime.rst:291
223282
msgid ""
224283
"Macros to extract fields from time delta objects. The argument must be an "
225-
"instance of :c:data:`PyDateTime_Delta`, including subclasses. The argument "
284+
"instance of :c:type:`PyDateTime_Delta`, including subclasses. The argument "
226285
"must not be ``NULL``, and the type is not checked:"
227286
msgstr ""
228287

229-
#: ../../c-api/datetime.rst:224
288+
#: ../../c-api/datetime.rst:297
230289
msgid "Return the number of days, as an int from -999999999 to 999999999."
231290
msgstr ""
232291

233-
#: ../../c-api/datetime.rst:231
292+
#: ../../c-api/datetime.rst:304
234293
msgid "Return the number of seconds, as an int from 0 through 86399."
235294
msgstr ""
236295

237-
#: ../../c-api/datetime.rst:238
296+
#: ../../c-api/datetime.rst:311
238297
msgid "Return the number of microseconds, as an int from 0 through 999999."
239298
msgstr ""
240299

241-
#: ../../c-api/datetime.rst:243
300+
#: ../../c-api/datetime.rst:316
242301
msgid "Macros for the convenience of modules implementing the DB API:"
243302
msgstr ""
244303

245-
#: ../../c-api/datetime.rst:247
304+
#: ../../c-api/datetime.rst:320
246305
msgid ""
247306
"Create and return a new :class:`datetime.datetime` object given an argument "
248-
"tuple suitable for passing to :meth:`datetime.datetime.fromtimestamp()`."
307+
"tuple suitable for passing to :meth:`datetime.datetime.fromtimestamp`."
249308
msgstr ""
250309

251-
#: ../../c-api/datetime.rst:253
310+
#: ../../c-api/datetime.rst:326
252311
msgid ""
253312
"Create and return a new :class:`datetime.date` object given an argument "
254-
"tuple suitable for passing to :meth:`datetime.date.fromtimestamp()`."
313+
"tuple suitable for passing to :meth:`datetime.date.fromtimestamp`."
255314
msgstr ""

0 commit comments

Comments
 (0)