@@ -12,7 +12,7 @@ msgid ""
12
12
msgstr ""
13
13
"Project-Id-Version : Python 3.7\n "
14
14
"Report-Msgid-Bugs-To : \n "
15
- "POT-Creation-Date : 2019-01-01 10:14 +0900\n "
15
+ "POT-Creation-Date : 2019-05-08 11:22 +0900\n "
16
16
"PO-Revision-Date : 2017-02-16 17:34+0000\n "
17
17
"Last-Translator : Osamu NAKAMURA, 2019\n "
18
18
"Language-Team : Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
@@ -157,34 +157,46 @@ msgstr "指定した年、月、日、時、分、秒、マイクロ秒の :clas
157
157
158
158
#: ../../c-api/datetime.rst:103
159
159
msgid ""
160
+ "Return a :class:`datetime.datetime` object with the specified year, month, "
161
+ "day, hour, minute, second, microsecond and fold."
162
+ msgstr ""
163
+
164
+ #: ../../c-api/datetime.rst:111
165
+ msgid ""
166
+ "Return a :class:`datetime.time` object with the specified hour, minute, "
167
+ "second, microsecond and fold."
168
+ msgstr ""
169
+
170
+ #: ../../c-api/datetime.rst:119
171
+ msgid ""
160
172
"Return a :class:`datetime.time` object with the specified hour, minute, "
161
173
"second and microsecond."
162
174
msgstr "指定された時、分、秒、マイクロ秒の :class:`datetime.time` オブジェクトを返します。"
163
175
164
- #: ../../c-api/datetime.rst:109
176
+ #: ../../c-api/datetime.rst:125
165
177
msgid ""
166
178
"Return a :class:`datetime.timedelta` object representing the given number of"
167
179
" days, seconds and microseconds. Normalization is performed so that the "
168
180
"resulting number of microseconds and seconds lie in the ranges documented "
169
181
"for :class:`datetime.timedelta` objects."
170
182
msgstr ""
171
183
172
- #: ../../c-api/datetime.rst:116
184
+ #: ../../c-api/datetime.rst:132
173
185
msgid ""
174
186
"Return a :class:`datetime.timezone` object with an unnamed fixed offset "
175
187
"represented by the *offset* argument."
176
188
msgstr ""
177
189
"*offset* 引数で指定した固定オフセットを持つ、名前のない :class:`datetime.timezone` オブジェクトを返します。"
178
190
179
- #: ../../c-api/datetime.rst:123
191
+ #: ../../c-api/datetime.rst:139
180
192
msgid ""
181
193
"Return a :class:`datetime.timezone` object with a fixed offset represented "
182
194
"by the *offset* argument and with tzname *name*."
183
195
msgstr ""
184
196
"*offset*引数で指定した固定のオフセットと、*name* のタイムゾーン名を持つ :class:`datetime.timezone` "
185
197
"オブジェクトを返します。"
186
198
187
- #: ../../c-api/datetime.rst:129
199
+ #: ../../c-api/datetime.rst:145
188
200
msgid ""
189
201
"Macros to extract fields from date objects. The argument must be an "
190
202
"instance of :c:data:`PyDateTime_Date`, including subclasses (such as "
@@ -195,19 +207,19 @@ msgstr ""
195
207
"またはそのサブクラス (例えば :c:data:`PyDateTime_DateTime`)の インスタンスでなければなりません。引数を *NULL*"
196
208
" にしてはならず、型チェックは行いません:"
197
209
198
- #: ../../c-api/datetime.rst:136
210
+ #: ../../c-api/datetime.rst:152
199
211
msgid "Return the year, as a positive int."
200
212
msgstr "年を正の整数で返します。"
201
213
202
- #: ../../c-api/datetime.rst:141
214
+ #: ../../c-api/datetime.rst:157
203
215
msgid "Return the month, as an int from 1 through 12."
204
216
msgstr "月を 1 から 12 の間の整数で返します。"
205
217
206
- #: ../../c-api/datetime.rst:146
218
+ #: ../../c-api/datetime.rst:162
207
219
msgid "Return the day, as an int from 1 through 31."
208
220
msgstr "日を 1 から 31 の間の整数で返します。"
209
221
210
- #: ../../c-api/datetime.rst:149
222
+ #: ../../c-api/datetime.rst:165
211
223
msgid ""
212
224
"Macros to extract fields from datetime objects. The argument must be an "
213
225
"instance of :c:data:`PyDateTime_DateTime`, including subclasses. The "
@@ -217,23 +229,23 @@ msgstr ""
217
229
":c:data:`PyDateTime_DateTime` またはそのサブクラスのインスタンスでなければなりません。引数を *NULL* "
218
230
"にしてはならず、型チェックは行いません:"
219
231
220
- #: ../../c-api/datetime.rst:155 ../../c-api/datetime.rst:179
232
+ #: ../../c-api/datetime.rst:171 ../../c-api/datetime.rst:195
221
233
msgid "Return the hour, as an int from 0 through 23."
222
234
msgstr "時を 0 から 23 の間の整数で返します。"
223
235
224
- #: ../../c-api/datetime.rst:160 ../../c-api/datetime.rst:184
236
+ #: ../../c-api/datetime.rst:176 ../../c-api/datetime.rst:200
225
237
msgid "Return the minute, as an int from 0 through 59."
226
238
msgstr "分を 0 から 59 の間の整数で返します。"
227
239
228
- #: ../../c-api/datetime.rst:165 ../../c-api/datetime.rst:189
240
+ #: ../../c-api/datetime.rst:181 ../../c-api/datetime.rst:205
229
241
msgid "Return the second, as an int from 0 through 59."
230
242
msgstr "秒を 0 から 59 の間の整数で返します。"
231
243
232
- #: ../../c-api/datetime.rst:170 ../../c-api/datetime.rst:194
244
+ #: ../../c-api/datetime.rst:186 ../../c-api/datetime.rst:210
233
245
msgid "Return the microsecond, as an int from 0 through 999999."
234
246
msgstr "マイクロ秒を 0 から 999999 の間の整数で返します。"
235
247
236
- #: ../../c-api/datetime.rst:173
248
+ #: ../../c-api/datetime.rst:189
237
249
msgid ""
238
250
"Macros to extract fields from time objects. The argument must be an "
239
251
"instance of :c:data:`PyDateTime_Time`, including subclasses. The argument "
@@ -242,7 +254,7 @@ msgstr ""
242
254
"以下のマクロは time オブジェクトからフィールド値を取り出すためのものです。引数は :c:data:`PyDateTime_Time` "
243
255
"またはそのサブクラスのインスタンスでなければなりません。引数を *NULL* にしてはならず、型チェックは行いません:"
244
256
245
- #: ../../c-api/datetime.rst:197
257
+ #: ../../c-api/datetime.rst:213
246
258
msgid ""
247
259
"Macros to extract fields from time delta objects. The argument must be an "
248
260
"instance of :c:data:`PyDateTime_Delta`, including subclasses. The argument "
@@ -251,31 +263,31 @@ msgstr ""
251
263
"以下のマクロは time delta オブジェクトからフィールド値をとりだすためのものです。引数は :c:data:`PyDateTime_Delta`"
252
264
" かそのサブクラスのインスタンスでなければなりません。引数を *NULL* にしてはならず、型チェックは行いません:"
253
265
254
- #: ../../c-api/datetime.rst:203
266
+ #: ../../c-api/datetime.rst:219
255
267
msgid "Return the number of days, as an int from -999999999 to 999999999."
256
268
msgstr "日数を -999999999 から 999999999 の間の整数で返します。"
257
269
258
- #: ../../c-api/datetime.rst:210
270
+ #: ../../c-api/datetime.rst:226
259
271
msgid "Return the number of seconds, as an int from 0 through 86399."
260
272
msgstr "秒数を 0 から 86399 の間の整数で返します。"
261
273
262
- #: ../../c-api/datetime.rst:217
274
+ #: ../../c-api/datetime.rst:233
263
275
msgid "Return the number of microseconds, as an int from 0 through 999999."
264
276
msgstr "マイクロ秒を 0 から 999999 の間の整数で返します。"
265
277
266
- #: ../../c-api/datetime.rst:222
278
+ #: ../../c-api/datetime.rst:238
267
279
msgid "Macros for the convenience of modules implementing the DB API:"
268
280
msgstr "以下のマクロは DB API を実装する上での便宜用です:"
269
281
270
- #: ../../c-api/datetime.rst:226
282
+ #: ../../c-api/datetime.rst:242
271
283
msgid ""
272
284
"Create and return a new :class:`datetime.datetime` object given an argument "
273
285
"tuple suitable for passing to :meth:`datetime.datetime.fromtimestamp()`."
274
286
msgstr ""
275
287
":meth:`dateitme.datetime.fromtimestamp()` に渡すのに適した引数タプルから新たな "
276
288
":class:`datetime.datetime` オブジェクトを生成して返します。"
277
289
278
- #: ../../c-api/datetime.rst:232
290
+ #: ../../c-api/datetime.rst:248
279
291
msgid ""
280
292
"Create and return a new :class:`datetime.date` object given an argument "
281
293
"tuple suitable for passing to :meth:`datetime.date.fromtimestamp()`."
0 commit comments