6
6
msgstr ""
7
7
"Project-Id-Version : Python 3.13\n "
8
8
"Report-Msgid-Bugs-To : \n "
9
- "POT-Creation-Date : 2024-10-09 00:13 +0000\n "
9
+ "POT-Creation-Date : 2024-10-15 00:14 +0000\n "
10
10
"PO-Revision-Date : 2023-08-07 10:20+0800\n "
11
11
"
Last-Translator :
Griiid <[email protected] >\n "
12
12
"Language-Team : Chinese - TAIWAN (https://github.com/python/python-docs-zh- "
@@ -270,7 +270,8 @@ msgid ""
270
270
msgstr ""
271
271
272
272
#: ../../library/datetime.rst:183
273
- msgid "A :class:`.datetime` object *d* is aware if both of the following hold:"
273
+ msgid ""
274
+ "A :class:`.datetime` object ``d`` is aware if both of the following hold:"
274
275
msgstr ""
275
276
276
277
#: ../../library/datetime.rst:185
@@ -282,11 +283,12 @@ msgid "``d.tzinfo.utcoffset(d)`` does not return ``None``"
282
283
msgstr "``d.tzinfo.utcoffset(d)`` 不會回傳 ``None``"
283
284
284
285
#: ../../library/datetime.rst:188
285
- msgid "Otherwise, *d* is naive."
286
+ #, fuzzy
287
+ msgid "Otherwise, ``d`` is naive."
286
288
msgstr "否則 *d* 會是 naive 的。"
287
289
288
290
#: ../../library/datetime.rst:190
289
- msgid "A :class:`.time` object *t* is aware if both of the following hold:"
291
+ msgid "A :class:`.time` object ``t`` is aware if both of the following hold:"
290
292
msgstr ""
291
293
292
294
#: ../../library/datetime.rst:192
@@ -298,8 +300,9 @@ msgid "``t.tzinfo.utcoffset(None)`` does not return ``None``."
298
300
msgstr "``t.tzinfo.utcoffset(None)`` 沒有回傳 ``None``。"
299
301
300
302
#: ../../library/datetime.rst:195
301
- msgid "Otherwise, *t* is naive."
302
- msgstr ""
303
+ #, fuzzy
304
+ msgid "Otherwise, ``t`` is naive."
305
+ msgstr "否則 *d* 會是 naive 的。"
303
306
304
307
#: ../../library/datetime.rst:197
305
308
msgid ""
@@ -595,7 +598,7 @@ msgstr "``q, r = divmod(t1, t2)``"
595
598
#: ../../library/datetime.rst:359
596
599
msgid ""
597
600
"Computes the quotient and the remainder: ``q = t1 // t2`` (3) and ``r = t1 % "
598
- "t2``. q is an integer and r is a :class:`timedelta` object."
601
+ "t2``. ``q`` is an integer and ``r`` is a :class:`timedelta` object."
599
602
msgstr ""
600
603
601
604
#: ../../library/datetime.rst:364
@@ -876,7 +879,7 @@ msgstr ""
876
879
#: ../../library/datetime.rst:528
877
880
msgid ""
878
881
":exc:`ValueError` is raised unless ``1 <= ordinal <= date.max.toordinal()``. "
879
- "For any date *d* , ``date.fromordinal(d.toordinal()) == d``."
882
+ "For any date ``d`` , ``date.fromordinal(d.toordinal()) == d``."
880
883
msgstr ""
881
884
882
885
#: ../../library/datetime.rst:535
@@ -1131,7 +1134,7 @@ msgstr ""
1131
1134
#: ../../library/datetime.rst:699
1132
1135
msgid ""
1133
1136
"Return the proleptic Gregorian ordinal of the date, where January 1 of year "
1134
- "1 has ordinal 1. For any :class:`date` object *d* , ``date.fromordinal(d."
1137
+ "1 has ordinal 1. For any :class:`date` object ``d`` , ``date.fromordinal(d."
1135
1138
"toordinal()) == d``."
1136
1139
msgstr ""
1137
1140
@@ -1211,7 +1214,7 @@ msgstr ""
1211
1214
"'2002-12-04'"
1212
1215
1213
1216
#: ../../library/datetime.rst:752
1214
- msgid "For a date *d* , ``str(d)`` is equivalent to ``d.isoformat()``."
1217
+ msgid "For a date ``d`` , ``str(d)`` is equivalent to ``d.isoformat()``."
1215
1218
msgstr ""
1216
1219
1217
1220
#: ../../library/datetime.rst:757
@@ -1615,7 +1618,7 @@ msgstr ""
1615
1618
1616
1619
#: ../../library/datetime.rst:1033
1617
1620
msgid ""
1618
- "For any :class:`.datetime` object *d* , ``d == datetime.combine(d.date(), d."
1621
+ "For any :class:`.datetime` object ``d`` , ``d == datetime.combine(d.date(), d."
1619
1622
"time(), d.tzinfo)``."
1620
1623
msgstr ""
1621
1624
@@ -1870,15 +1873,15 @@ msgstr ""
1870
1873
msgid ""
1871
1874
"If both are naive, or both are aware and have the same :attr:`~.datetime."
1872
1875
"tzinfo` attribute, the :attr:`~.datetime.tzinfo` attributes are ignored, and "
1873
- "the result is a :class:`timedelta` object *t* such that ``datetime2 + t == "
1876
+ "the result is a :class:`timedelta` object ``t`` such that ``datetime2 + t == "
1874
1877
"datetime1``. No time zone adjustments are done in this case."
1875
1878
msgstr ""
1876
1879
1877
1880
#: ../../library/datetime.rst:1243
1878
1881
msgid ""
1879
1882
"If both are aware and have different :attr:`~.datetime.tzinfo` attributes, "
1880
- "``a-b`` acts as if *a* and *b* were first converted to naive UTC datetimes. "
1881
- "The result is ``(a.replace(tzinfo=None) - a.utcoffset()) - (b."
1883
+ "``a-b`` acts as if ``a`` and ``b`` were first converted to naive UTC "
1884
+ "datetimes. The result is ``(a.replace(tzinfo=None) - a.utcoffset()) - (b."
1882
1885
"replace(tzinfo=None) - b.utcoffset())`` except that the implementation never "
1883
1886
"overflows."
1884
1887
msgstr ""
@@ -2089,15 +2092,15 @@ msgstr ""
2089
2092
2090
2093
#: ../../library/datetime.rst:1424
2091
2094
msgid ""
2092
- "If :class:`.datetime` instance *d* is naive, this is the same as ``d."
2095
+ "If :class:`.datetime` instance ``d`` is naive, this is the same as ``d."
2093
2096
"timetuple()`` except that :attr:`~.time.struct_time.tm_isdst` is forced to 0 "
2094
2097
"regardless of what ``d.dst()`` returns. DST is never in effect for a UTC "
2095
2098
"time."
2096
2099
msgstr ""
2097
2100
2098
2101
#: ../../library/datetime.rst:1428
2099
2102
msgid ""
2100
- "If *d* is aware, *d* is normalized to UTC time, by subtracting ``d."
2103
+ "If ``d`` is aware, ``d`` is normalized to UTC time, by subtracting ``d."
2101
2104
"utcoffset()``, and a :class:`time.struct_time` for the normalized time is "
2102
2105
"returned. :attr:`!tm_isdst` is forced to 0. Note that an :exc:"
2103
2106
"`OverflowError` may be raised if ``d.year`` was ``MINYEAR`` or ``MAXYEAR`` "
@@ -2326,7 +2329,7 @@ msgstr "新增 *timespec* 參數。"
2326
2329
2327
2330
#: ../../library/datetime.rst:1576
2328
2331
msgid ""
2329
- "For a :class:`.datetime` instance *d* , ``str(d)`` is equivalent to ``d."
2332
+ "For a :class:`.datetime` instance ``d`` , ``str(d)`` is equivalent to ``d."
2330
2333
"isoformat(' ')``."
2331
2334
msgstr ""
2332
2335
@@ -2562,8 +2565,8 @@ msgstr ""
2562
2565
2563
2566
#: ../../library/datetime.rst:1822
2564
2567
msgid ""
2565
- ":class:`.time` objects support equality and order comparisons, where *a* is "
2566
- "considered less than *b* when *a* precedes *b* in time."
2568
+ ":class:`.time` objects support equality and order comparisons, where ``a`` "
2569
+ "is considered less than ``b`` when ``a`` precedes ``b`` in time."
2567
2570
msgstr ""
2568
2571
2569
2572
#: ../../library/datetime.rst:1825
@@ -2737,7 +2740,7 @@ msgstr ""
2737
2740
"'12:34:56'"
2738
2741
2739
2742
#: ../../library/datetime.rst:1954
2740
- msgid "For a time *t* , ``str(t)`` is equivalent to ``t.isoformat()``."
2743
+ msgid "For a time ``t`` , ``str(t)`` is equivalent to ``t.isoformat()``."
2741
2744
msgstr ""
2742
2745
2743
2746
#: ../../library/datetime.rst:1959
0 commit comments