55#
66# Translators:
77# python-doc bot, 2025
8+ # Takanori Suzuki <takanori@takanory.net>, 2026
89#
910#, fuzzy
1011msgid ""
1112msgstr ""
1213"Project-Id-Version : Python 3.14\n "
1314"Report-Msgid-Bugs-To : \n "
14- "POT-Creation-Date : 2025-12-31 14:15 +0000\n "
15+ "POT-Creation-Date : 2026-01-17 14:14 +0000\n "
1516"PO-Revision-Date : 2025-09-16 00:01+0000\n "
16- "Last-Translator : python-doc bot, 2025 \n "
17+ "Last-Translator : Takanori Suzuki <takanori@takanory.net>, 2026 \n "
1718"Language-Team : Japanese (https://app.transifex.com/python-doc/teams/5390/ "
1819"ja/)\n "
1920"MIME-Version : 1.0\n "
@@ -329,6 +330,8 @@ msgstr ""
329330msgid ""
330331"A :class:`.datetime` object ``d`` is aware if both of the following hold:"
331332msgstr ""
333+ "次の条件を両方とも満たす場合、 :class:`.datetime` オブジェクト ``d`` は "
334+ "aware です:"
332335
333336#: ../../library/datetime.rst:185
334337msgid "``d.tzinfo`` is not ``None``"
@@ -340,11 +343,13 @@ msgstr "``d.tzinfo.utcoffset(d)`` が ``None`` を返さない"
340343
341344#: ../../library/datetime.rst:188
342345msgid "Otherwise, ``d`` is naive."
343- msgstr ""
346+ msgstr "どちらかを満たさない場合は、 ``d`` は naive です。 "
344347
345348#: ../../library/datetime.rst:190
346349msgid "A :class:`.time` object ``t`` is aware if both of the following hold:"
347350msgstr ""
351+ "次の条件を両方とも満たす場合、 :class:`.time` オブジェクト ``t`` は aware で"
352+ "す:"
348353
349354#: ../../library/datetime.rst:192
350355msgid "``t.tzinfo`` is not ``None``"
@@ -356,7 +361,7 @@ msgstr "``t.tzinfo.utcoffset(None)`` が ``None`` を返さない"
356361
357362#: ../../library/datetime.rst:195
358363msgid "Otherwise, ``t`` is naive."
359- msgstr ""
364+ msgstr "どちらかを満たさない場合は、 ``t`` は naive です。 "
360365
361366#: ../../library/datetime.rst:197
362367msgid ""
@@ -557,11 +562,11 @@ msgstr "インスタンスの属性 (読み出しのみ):"
557562
558563#: ../../library/datetime.rst:307
559564msgid "Between -999,999,999 and 999,999,999 inclusive."
560- msgstr ""
565+ msgstr "両端値を含む-999,999,999 から 999,999,999 の間 "
561566
562567#: ../../library/datetime.rst:312
563568msgid "Between 0 and 86,399 inclusive."
564- msgstr ""
569+ msgstr "両端値を含む 0 から 86,399 の間 "
565570
566571#: ../../library/datetime.rst:316
567572msgid ""
@@ -582,7 +587,7 @@ msgstr ""
582587
583588#: ../../library/datetime.rst:331
584589msgid "Between 0 and 999,999 inclusive."
585- msgstr ""
590+ msgstr "両端値を含む 0 から 999,999 の間 "
586591
587592#: ../../library/datetime.rst:334 ../../library/datetime.rst:650
588593#: ../../library/datetime.rst:1248
@@ -703,6 +708,8 @@ msgid ""
703708"Computes the quotient and the remainder: ``q = t1 // t2`` (3) and ``r = t1 % "
704709"t2``. ``q`` is an integer and ``r`` is a :class:`timedelta` object."
705710msgstr ""
711+ "商と剰余が計算されます: ``q = t1 // t2`` (3) と ``r = t1 % t2`` 。``q`` は整"
712+ "数で ``r`` は :class:`timedelta` オブジェクトです。"
706713
707714#: ../../library/datetime.rst:380
708715msgid "``+t1``"
@@ -721,6 +728,8 @@ msgid ""
721728"Equivalent to ``timedelta(-t1.days, -t1.seconds, -t1.microseconds)``, and to "
722729"``t1 * -1``. (1)(4)"
723730msgstr ""
731+ "``timedelta(-t1.days, -t1.seconds, -t1.microseconds)``、および ``t1 * -1`` と"
732+ "同じです。 (1)(4)"
724733
725734#: ../../library/datetime.rst:387
726735msgid "``abs(t)``"
@@ -1015,6 +1024,10 @@ msgid ""
10151024":exc:`ValueError` is raised unless ``1 <= ordinal <= date.max.toordinal()``. "
10161025"For any date ``d``, ``date.fromordinal(d.toordinal()) == d``."
10171026msgstr ""
1027+ "``1 <= ordinal <= date.max.toordinal()`` でない場合、 :exc:`ValueError` が送"
1028+ "出されます。\n"
1029+ "任意の日付 ``d`` に対し、 ``date.fromordinal(d.toordinal()) == d`` となりま"
1030+ "す。"
10181031
10191032#: ../../library/datetime.rst:551
10201033msgid ""
@@ -1077,14 +1090,18 @@ msgstr ""
10771090
10781091#: ../../library/datetime.rst:586
10791092msgid "date(*(time.strptime(date_string, format)[0:3]))"
1080- msgstr ""
1093+ msgstr "date(*(time.strptime(date_string, format)[0:3])) "
10811094
10821095#: ../../library/datetime.rst:588
10831096msgid ""
10841097":exc:`ValueError` is raised if the date_string and format can't be parsed "
10851098"by :func:`time.strptime` or if it returns a value which isn't a time tuple. "
10861099"See also :ref:`strftime-strptime-behavior` and :meth:`date.fromisoformat`."
10871100msgstr ""
1101+ "date_string と format が :func:`time.strptime` で構文解析できない場合や、この"
1102+ "関数が時刻タプルを返してこない場合には :exc:`ValueError` を送出します。:ref:"
1103+ "`strftime-strptime-behavior` および :meth:`date.fromisoformat` も参照してくだ"
1104+ "さい。"
10881105
10891106#: ../../library/datetime.rst:595
10901107msgid ""
@@ -1319,6 +1336,9 @@ msgid ""
13191336"1 has ordinal 1. For any :class:`date` object ``d``, ``date.fromordinal(d."
13201337"toordinal()) == d``."
13211338msgstr ""
1339+ "先発グレゴリオ暦における日付序数を返します。 1 年の 1 月 1 日が序数 1 となり"
1340+ "ます。任意の :class:`date` オブジェクト ``d`` について、 ``date."
1341+ "fromordinal(d.toordinal()) == d`` となります。"
13221342
13231343#: ../../library/datetime.rst:755
13241344msgid ""
0 commit comments