@@ -13,7 +13,7 @@ msgid ""
1313msgstr ""
1414"Project-Id-Version : Python 3.13\n "
1515"Report-Msgid-Bugs-To : \n "
16- "POT-Creation-Date : 2024-09-20 14:17+0000\n "
16+ "POT-Creation-Date : 2024-10-04 14:17+0000\n "
1717"PO-Revision-Date : 2021-06-28 01:04+0000\n "
1818"Last-Translator : Michał Biliński <m.bilinskimichal@gmail.com>, 2021\n "
1919"Language-Team : Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
@@ -375,6 +375,21 @@ msgstr ""
375375msgid "Between 0 and 86,399 inclusive."
376376msgstr ""
377377
378+ msgid ""
379+ "It is a somewhat common bug for code to unintentionally use this attribute "
380+ "when it is actually intended to get a :meth:`~timedelta.total_seconds` value "
381+ "instead:"
382+ msgstr ""
383+
384+ msgid ""
385+ ">>> from datetime import timedelta\n"
386+ ">>> duration = timedelta(seconds=11235813)\n"
387+ ">>> duration.days, duration.seconds\n"
388+ "(130, 3813)\n"
389+ ">>> duration.total_seconds()\n"
390+ "11235813.0"
391+ msgstr ""
392+
378393msgid "Between 0 and 999,999 inclusive."
379394msgstr ""
380395
@@ -470,8 +485,8 @@ msgid "``-t1``"
470485msgstr ""
471486
472487msgid ""
473- "Equivalent to ``timedelta(-t1.days, -t1.seconds* , -t1.microseconds)``, and "
474- "to ``t1 * -1``. (1)(4)"
488+ "Equivalent to ``timedelta(-t1.days, -t1.seconds, -t1.microseconds)``, and to "
489+ "``t1 * -1``. (1)(4)"
475490msgstr ""
476491
477492msgid "``abs(t)``"
0 commit comments