@@ -13,7 +13,7 @@ msgid ""
1313msgstr ""
1414"Project-Id-Version : Python 3.12\n "
1515"Report-Msgid-Bugs-To : \n "
16- "POT-Creation-Date : 2024-04-19 14:13+0000\n "
16+ "POT-Creation-Date : 2024-04-26 14:13+0000\n "
1717"PO-Revision-Date : 2021-06-28 01:04+0000\n "
1818"
Last-Translator :
Michał Biliński <[email protected] >, 2021\n "
1919"Language-Team : Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
@@ -130,12 +130,12 @@ msgstr ""
130130
131131msgid ""
132132"The smallest year number allowed in a :class:`date` or :class:`.datetime` "
133- "object. :const:`MINYEAR` is ``1`` ."
133+ "object. :const:`MINYEAR` is 1 ."
134134msgstr ""
135135
136136msgid ""
137137"The largest year number allowed in a :class:`date` or :class:`.datetime` "
138- "object. :const:`MAXYEAR` is `` 9999`` ."
138+ "object. :const:`MAXYEAR` is 9999."
139139msgstr ""
140140
141141msgid "Alias for the UTC timezone singleton :attr:`datetime.timezone.utc`."
@@ -252,8 +252,8 @@ msgid ""
252252msgstr ""
253253
254254msgid ""
255- "All arguments are optional and default to ``0`` . Arguments may be integers "
256- "or floats, and may be positive or negative."
255+ "All arguments are optional and default to 0 . Arguments may be integers or "
256+ "floats, and may be positive or negative."
257257msgstr ""
258258
259259msgid ""
@@ -328,8 +328,9 @@ msgid ""
328328msgstr ""
329329
330330msgid ""
331- "Note that, because of normalization, ``timedelta.max`` > ``-timedelta.min``. "
332- "``-timedelta.max`` is not representable as a :class:`timedelta` object."
331+ "Note that, because of normalization, ``timedelta.max`` is greater than ``-"
332+ "timedelta.min``. ``-timedelta.max`` is not representable as a :class:"
333+ "`timedelta` object."
333334msgstr ""
334335
335336msgid "Instance attributes (read-only):"
@@ -372,27 +373,27 @@ msgid "``t1 = t2 + t3``"
372373msgstr ""
373374
374375msgid ""
375- "Sum of *t2* and *t3* . Afterwards *t1*-*t2* == *t3* and *t1*-*t3* == *t2* are "
376- "true. (1)"
376+ "Sum of ``t2`` and ``t3`` . Afterwards ``t1 - t2 == t3`` and ``t1 - t3 == t2`` "
377+ "are true. (1)"
377378msgstr ""
378379
379380msgid "``t1 = t2 - t3``"
380381msgstr ""
381382
382383msgid ""
383- "Difference of *t2* and *t3* . Afterwards *t1* == *t2* - *t3* and *t2* == *t1* "
384- "+ *t3* are true. (1)(6)"
384+ "Difference of ``t2`` and ``t3`` . Afterwards ``t1 == t2 - t3`` and ``t2 == "
385+ "t1 + t3`` are true. (1)(6)"
385386msgstr ""
386387
387388msgid "``t1 = t2 * i or t1 = i * t2``"
388389msgstr ""
389390
390391msgid ""
391- "Delta multiplied by an integer. Afterwards *t1* // i == *t2* is true, "
392+ "Delta multiplied by an integer. Afterwards ``t1 // i == t2`` is true, "
392393"provided ``i != 0``."
393394msgstr ""
394395
395- msgid "In general, *t1* \\ * i == *t1* \\ * (i-1) + *t1* is true. (1)"
396+ msgid "In general, ``t1 * i == t1 * (i-1) + t1`` is true. (1)"
396397msgstr ""
397398
398399msgid "``t1 = t2 * f or t1 = f * t2``"
@@ -407,7 +408,7 @@ msgid "``f = t2 / t3``"
407408msgstr ""
408409
409410msgid ""
410- "Division (3) of overall duration *t2* by interval unit *t3* . Returns a :"
411+ "Division (3) of overall duration ``t2`` by interval unit ``t3`` . Returns a :"
411412"class:`float` object."
412413msgstr ""
413414
@@ -451,16 +452,16 @@ msgid "``-t1``"
451452msgstr ""
452453
453454msgid ""
454- "equivalent to :class:`timedelta` \\ (-* t1.days* , -* t1.seconds*, -* t1."
455- "microseconds*), and to *t1* \\ * -1. (1)(4)"
455+ "Equivalent to ``timedelta(- t1.days, -t1.seconds*, -t1.microseconds)``, and "
456+ "to ``t1 * -1`` . (1)(4)"
456457msgstr ""
457458
458459msgid "``abs(t)``"
459460msgstr ""
460461
461462msgid ""
462- "equivalent to + \\ *t* when ``t.days >= 0``, and to -*t* when ``t.days < 0``. "
463- "(2)"
463+ "Equivalent to ``+t`` when ``t.days >= 0``, and to ``-t`` when ``t.days < "
464+ "0``. (2)"
464465msgstr ""
465466
466467msgid "``str(t)``"
@@ -488,10 +489,10 @@ msgstr ""
488489msgid "This is exact and cannot overflow."
489490msgstr ""
490491
491- msgid "Division by 0 raises :exc:`ZeroDivisionError`."
492+ msgid "Division by zero raises :exc:`ZeroDivisionError`."
492493msgstr ""
493494
494- msgid "-* timedelta.max* is not representable as a :class:`timedelta` object."
495+ msgid "``- timedelta.max`` is not representable as a :class:`timedelta` object."
495496msgstr ""
496497
497498msgid ""
@@ -674,13 +675,13 @@ msgstr ""
674675msgid "``date2 = date1 + timedelta``"
675676msgstr ""
676677
677- msgid "* date2* will be ``timedelta.days`` days after * date1* . (1)"
678+ msgid "`` date2`` will be ``timedelta.days`` days after `` date1`` . (1)"
678679msgstr ""
679680
680681msgid "``date2 = date1 - timedelta``"
681682msgstr ""
682683
683- msgid "Computes * date2* such that ``date2 + timedelta == date1``. (2)"
684+ msgid "Computes `` date2`` such that ``date2 + timedelta == date1``. (2)"
684685msgstr ""
685686
686687msgid "``timedelta = date1 - date2``"
@@ -725,8 +726,8 @@ msgid "``timedelta.seconds`` and ``timedelta.microseconds`` are ignored."
725726msgstr ""
726727
727728msgid ""
728- "This is exact, and cannot overflow. timedelta.seconds and timedelta."
729- "microseconds are 0, and date2 + timedelta == date1 after."
729+ "This is exact, and cannot overflow. `` timedelta.seconds`` and `` timedelta."
730+ "microseconds`` are 0, and `` date2 + timedelta == date1`` after."
730731msgstr ""
731732
732733msgid ":class:`date` objects are equal if they represent the same date."
@@ -763,7 +764,7 @@ msgstr ""
763764
764765msgid ""
765766"where ``yday = d.toordinal() - date(d.year, 1, 1).toordinal() + 1`` is the "
766- "day number within the current year starting with ``1`` for January 1st."
767+ "day number within the current year starting with 1 for January 1st."
767768msgstr ""
768769
769770msgid ""
@@ -1132,8 +1133,9 @@ msgid ""
11321133"In ``[0, 1]``. Used to disambiguate wall times during a repeated interval. "
11331134"(A repeated interval occurs when clocks are rolled back at the end of "
11341135"daylight saving time or when the UTC offset for the current zone is "
1135- "decreased for political reasons.) The value 0 (1) represents the earlier "
1136- "(later) of the two moments with the same wall time representation."
1136+ "decreased for political reasons.) The values 0 and 1 represent, "
1137+ "respectively, the earlier and later of the two moments with the same wall "
1138+ "time representation."
11371139msgstr ""
11381140
11391141msgid "``datetime2 = datetime1 + timedelta``"
@@ -1170,20 +1172,20 @@ msgid "``datetime1 >= datetime2``"
11701172msgstr ""
11711173
11721174msgid ""
1173- "datetime2 is a duration of timedelta removed from datetime1, moving forward "
1174- "in time if ``timedelta.days`` > 0, or backward if ``timedelta.days`` < 0. "
1175- "The result has the same :attr:`~.datetime.tzinfo` attribute as the input "
1176- "datetime, and datetime2 - datetime1 == timedelta after. :exc:`OverflowError` "
1177- "is raised if datetime2.year would be smaller than :const:`MINYEAR` or larger "
1178- "than :const:`MAXYEAR`. Note that no time zone adjustments are done even if "
1179- "the input is an aware object."
1175+ "`` datetime2`` is a duration of `` timedelta`` removed from `` datetime1``, "
1176+ "moving forward in time if ``timedelta.days > 0`` , or backward if ``timedelta."
1177+ "days < 0``. The result has the same :attr:`~.datetime.tzinfo` attribute as "
1178+ "the input datetime, and `` datetime2 - datetime1 == timedelta`` after. :exc:"
1179+ "`OverflowError` is raised if `` datetime2.year`` would be smaller than :const:"
1180+ "`MINYEAR` or larger than :const:`MAXYEAR`. Note that no time zone "
1181+ "adjustments are done even if the input is an aware object."
11801182msgstr ""
11811183
11821184msgid ""
1183- "Computes the datetime2 such that datetime2 + timedelta == datetime1. As for "
1184- "addition, the result has the same :attr:`~.datetime.tzinfo` attribute as the "
1185- "input datetime, and no time zone adjustments are done even if the input is "
1186- "aware."
1185+ "Computes the `` datetime2`` such that `` datetime2 + timedelta == datetime1``. "
1186+ "As for addition, the result has the same :attr:`~.datetime.tzinfo` attribute "
1187+ "as the input datetime, and no time zone adjustments are done even if the "
1188+ "input is aware."
11871189msgstr ""
11881190
11891191msgid ""
@@ -1350,12 +1352,12 @@ msgstr ""
13501352
13511353msgid ""
13521354"where ``yday = d.toordinal() - date(d.year, 1, 1).toordinal() + 1`` is the "
1353- "day number within the current year starting with ``1`` for January 1st. The :"
1355+ "day number within the current year starting with 1 for January 1st. The :"
13541356"attr:`~time.struct_time.tm_isdst` flag of the result is set according to "
13551357"the :meth:`dst` method: :attr:`.tzinfo` is ``None`` or :meth:`dst` returns "
13561358"``None``, :attr:`!tm_isdst` is set to ``-1``; else if :meth:`dst` returns a "
1357- "non-zero value, :attr:`!tm_isdst` is set to ``1`` ; else :attr:`!tm_isdst` is "
1358- "set to ``0`` ."
1359+ "non-zero value, :attr:`!tm_isdst` is set to 1 ; else :attr:`!tm_isdst` is set "
1360+ "to 0 ."
13591361msgstr ""
13601362
13611363msgid ""
@@ -1369,8 +1371,8 @@ msgid ""
13691371"If *d* is aware, *d* is normalized to UTC time, by subtracting ``d."
13701372"utcoffset()``, and a :class:`time.struct_time` for the normalized time is "
13711373"returned. :attr:`!tm_isdst` is forced to 0. Note that an :exc:"
1372- "`OverflowError` may be raised if *d* .year was ``MINYEAR`` or ``MAXYEAR`` and "
1373- "UTC adjustment spills over a year boundary."
1374+ "`OverflowError` may be raised if ``d .year`` was ``MINYEAR`` or ``MAXYEAR`` "
1375+ "and UTC adjustment spills over a year boundary."
13741376msgstr ""
13751377
13761378msgid ""
@@ -1568,7 +1570,7 @@ msgstr ""
15681570
15691571msgid ""
15701572"If an argument outside those ranges is given, :exc:`ValueError` is raised. "
1571- "All default to ``0`` except *tzinfo*, which defaults to :const:`None`."
1573+ "All default to 0 except *tzinfo*, which defaults to :const:`None`."
15721574msgstr ""
15731575
15741576msgid "The earliest representable :class:`.time`, ``time(0, 0, 0, 0)``."
@@ -1809,7 +1811,7 @@ msgstr ""
18091811
18101812msgid ""
18111813"must return the same result for every :class:`.datetime` *dt* with ``dt."
1812- "tzinfo == tz`` For sane :class:`tzinfo` subclasses, this expression yields "
1814+ "tzinfo == tz``. For sane :class:`tzinfo` subclasses, this expression yields "
18131815"the time zone's \" standard offset\" , which should not depend on the date or "
18141816"the time, but only on geographic location. The implementation of :meth:"
18151817"`datetime.astimezone` relies on this, but cannot detect violations; it's the "
@@ -1835,12 +1837,13 @@ msgid ""
18351837"Return the time zone name corresponding to the :class:`.datetime` object "
18361838"*dt*, as a string. Nothing about string names is defined by the :mod:`!"
18371839"datetime` module, and there's no requirement that it mean anything in "
1838- "particular. For example, \" GMT\" , \" UTC\" , \" -500\" , \" -5:00\" , \" EDT\" , "
1839- "\" US/Eastern\" , \" America/New York\" are all valid replies. Return ``None`` "
1840- "if a string name isn't known. Note that this is a method rather than a fixed "
1841- "string primarily because some :class:`tzinfo` subclasses will wish to return "
1842- "different names depending on the specific value of *dt* passed, especially "
1843- "if the :class:`tzinfo` class is accounting for daylight time."
1840+ "particular. For example, ``\" GMT\" ``, ``\" UTC\" ``, ``\" -500\" ``, "
1841+ "``\" -5:00\" ``, ``\" EDT\" ``, ``\" US/Eastern\" ``, ``\" America/New York\" `` are "
1842+ "all valid replies. Return ``None`` if a string name isn't known. Note that "
1843+ "this is a method rather than a fixed string primarily because some :class:"
1844+ "`tzinfo` subclasses will wish to return different names depending on the "
1845+ "specific value of *dt* passed, especially if the :class:`tzinfo` class is "
1846+ "accounting for daylight time."
18441847msgstr ""
18451848
18461849msgid ""
@@ -2489,14 +2492,13 @@ msgstr ""
24892492msgid ""
24902493"For :class:`.time` objects, the format codes for year, month, and day should "
24912494"not be used, as :class:`!time` objects have no such values. If they're used "
2492- "anyway, ``1900`` is substituted for the year, and ``1`` for the month and "
2493- "day."
2495+ "anyway, 1900 is substituted for the year, and 1 for the month and day."
24942496msgstr ""
24952497
24962498msgid ""
24972499"For :class:`date` objects, the format codes for hours, minutes, seconds, and "
24982500"microseconds should not be used, as :class:`date` objects have no such "
2499- "values. If they're used anyway, ``0`` is substituted for them."
2501+ "values. If they're used anyway, 0 is substituted for them."
25002502msgstr ""
25012503
25022504msgid ""
@@ -2649,8 +2651,8 @@ msgid ""
26492651msgstr ""
26502652
26512653msgid ""
2652- "Passing ``datetime.strptime('Feb 29', '%b %d')`` will fail since `` 1900`` is "
2653- "not a leap year."
2654+ "Passing ``datetime.strptime('Feb 29', '%b %d')`` will fail since 1900 is not "
2655+ "a leap year."
26542656msgstr ""
26552657
26562658msgid "% (percent)"
0 commit comments