@@ -236,22 +236,24 @@ msgid ""
236
236
"The :class:`date`, :class:`.datetime`, :class:`.time`, and :class:`timezone`"
237
237
" types share these common features:"
238
238
msgstr ""
239
+ ":class:`date` 型、:class:`.datetime` 型、:class:`.time` 型、:class:`timezone` "
240
+ "型には共通する特徴があります:"
239
241
240
242
#: ../../library/datetime.rst:153
241
243
msgid ""
242
244
"Objects of these types are hashable, meaning that they can be used as "
243
245
"dictionary keys."
244
- msgstr ""
246
+ msgstr "これらの型のオブジェクトはハッシュ可能であり、辞書のキーとして使えることになります。 "
245
247
246
248
#: ../../library/datetime.rst:155
247
249
msgid ""
248
250
"Objects of these types support efficient pickling via the :mod:`pickle` "
249
251
"module."
250
- msgstr ""
252
+ msgstr "これらの型のオブジェクトは :mod:`pickle` モジュールを利用して効率的な pickle 化をサポートしています。 "
251
253
252
254
#: ../../library/datetime.rst:158
253
255
msgid "Determining if an Object is Aware or Naive"
254
- msgstr ""
256
+ msgstr "オブジェクトが Aware なのか Naive なのかの判断 "
255
257
256
258
#: ../../library/datetime.rst:160
257
259
msgid "Objects of the :class:`date` type are always naive."
@@ -262,45 +264,46 @@ msgid ""
262
264
"An object of type :class:`.time` or :class:`.datetime` may be aware or "
263
265
"naive."
264
266
msgstr ""
267
+ ":class:`.time` 型あるいは :class:`.datetime` 型のオブジェクトは aware か naive のどちらかです。"
265
268
266
269
#: ../../library/datetime.rst:164
267
270
msgid ""
268
271
"A :class:`.datetime` object *d* is aware if both of the following hold:"
269
- msgstr ""
272
+ msgstr "次の条件を両方とも満たす場合、 :class:`.datetime` オブジェクト *d* は aware です: "
270
273
271
274
#: ../../library/datetime.rst:166
272
275
msgid "``d.tzinfo`` is not ``None``"
273
- msgstr ""
276
+ msgstr "``d.tzinfo`` が ``None`` でない "
274
277
275
278
#: ../../library/datetime.rst:167
276
279
msgid "``d.tzinfo.utcoffset(d)`` does not return ``None``"
277
- msgstr ""
280
+ msgstr "``d.tzinfo.utcoffset(d)`` が ``None`` を返さない "
278
281
279
282
#: ../../library/datetime.rst:169
280
283
msgid "Otherwise, *d* is naive."
281
- msgstr ""
284
+ msgstr "どちらかを満たさない場合は、 *d* は naive です。 "
282
285
283
286
#: ../../library/datetime.rst:171
284
287
msgid "A :class:`.time` object *t* is aware if both of the following hold:"
285
- msgstr ""
288
+ msgstr "次の条件を両方とも満たす場合、 :class:`.time` オブジェクト *t* は aware です: "
286
289
287
290
#: ../../library/datetime.rst:173
288
291
msgid "``t.tzinfo`` is not ``None``"
289
- msgstr ""
292
+ msgstr "``t.tzinfo`` が ``None`` でない "
290
293
291
294
#: ../../library/datetime.rst:174
292
295
msgid "``t.tzinfo.utcoffset(None)`` does not return ``None``."
293
- msgstr ""
296
+ msgstr "``t.tzinfo.utcoffset(None)`` が ``None`` を返さない "
294
297
295
298
#: ../../library/datetime.rst:176
296
299
msgid "Otherwise, *t* is naive."
297
- msgstr ""
300
+ msgstr "どちらかを満たさない場合は、 *t* は naive です。 "
298
301
299
302
#: ../../library/datetime.rst:178
300
303
msgid ""
301
304
"The distinction between aware and naive doesn't apply to :class:`timedelta` "
302
305
"objects."
303
- msgstr ""
306
+ msgstr "aware なオブジェクトと naive なオブジェクトの区別は :class:`timedelta` オブジェクトにはあてはまりません。 "
304
307
305
308
#: ../../library/datetime.rst:184
306
309
msgid ":class:`timedelta` Objects"
@@ -317,12 +320,16 @@ msgid ""
317
320
"All arguments are optional and default to ``0``. Arguments may be integers "
318
321
"or floats, and may be positive or negative."
319
322
msgstr ""
323
+ "全ての引数がオプションで、デフォルト値は ``0`` です。\n"
324
+ "引数は整数、浮動小数点数でもよく、正でも負でもかまいません。"
320
325
321
326
#: ../../library/datetime.rst:194
322
327
msgid ""
323
328
"Only *days*, *seconds* and *microseconds* are stored internally. Arguments "
324
329
"are converted to those units:"
325
330
msgstr ""
331
+ "*days*, *seconds*, *microseconds* だけが内部的に保持されます。\n"
332
+ "引数は以下のようにして変換されます:"
326
333
327
334
#: ../../library/datetime.rst:197
328
335
msgid "A millisecond is converted to 1000 microseconds."