@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version : Python 3.8\n "
1313"Report-Msgid-Bugs-To : \n "
14- "POT-Creation-Date : 2020-02-29 12:49 +0000\n "
14+ "POT-Creation-Date : 2020-12-20 15:58 +0000\n "
1515"PO-Revision-Date : 2020-05-30 12:10+0000\n "
1616"Last-Translator : m_aciek <maciej.olko@gmail.com>, 2020\n "
1717"Language-Team : Polish (https://www.transifex.com/python-doc/teams/5390/pl/)\n "
@@ -417,14 +417,14 @@ msgstr ""
417417msgid ""
418418"The ``'#'`` option causes the \" alternate form\" to be used for the "
419419"conversion. The alternate form is defined differently for different types. "
420- "This option is only valid for integer, float, complex and Decimal types. For "
420+ "This option is only valid for integer, float and complex types. For "
421421"integers, when binary, octal, or hexadecimal output is used, this option "
422422"adds the prefix respective ``'0b'``, ``'0o'``, or ``'0x'`` to the output "
423- "value. For floats, complex and Decimal the alternate form causes the result "
424- "of the conversion to always contain a decimal-point character, even if no "
425- "digits follow it. Normally, a decimal-point character appears in the result "
426- "of these conversions only if a digit follows it. In addition, for ``'g'`` "
427- "and ``'G'`` conversions, trailing zeros are not removed from the result."
423+ "value. For float and complex the alternate form causes the result of the "
424+ "conversion to always contain a decimal-point character, even if no digits "
425+ "follow it. Normally, a decimal-point character appears in the result of "
426+ "these conversions only if a digit follows it. In addition, for ``'g'`` and "
427+ "``'G'`` conversions, trailing zeros are not removed from the result."
428428msgstr ""
429429
430430msgid ""
@@ -554,31 +554,43 @@ msgid ""
554554msgstr ""
555555
556556msgid ""
557- "The available presentation types for floating point and decimal values are:"
557+ "The available presentation types for :class:`float` and :class:`~decimal."
558+ "Decimal` values are:"
558559msgstr ""
559560
560561msgid "``'e'``"
561562msgstr ""
562563
563564msgid ""
564- "Exponent notation. Prints the number in scientific notation using the letter "
565- "'e' to indicate the exponent. The default precision is ``6``."
565+ "Scientific notation. For a given precision ``p``, formats the number in "
566+ "scientific notation with the letter 'e' separating the coefficient from the "
567+ "exponent. The coefficient has one digit before and ``p`` digits after the "
568+ "decimal point, for a total of ``p + 1`` significant digits. With no "
569+ "precision given, uses a precision of ``6`` digits after the decimal point "
570+ "for :class:`float`, and shows all coefficient digits for :class:`~decimal."
571+ "Decimal`. If no digits follow the decimal point, the decimal point is also "
572+ "removed unless the ``#`` option is used."
566573msgstr ""
567574
568575msgid "``'E'``"
569576msgstr ""
570577
571578msgid ""
572- "Exponent notation. Same as ``'e'`` except it uses an upper case 'E' as the "
579+ "Scientific notation. Same as ``'e'`` except it uses an upper case 'E' as the "
573580"separator character."
574581msgstr ""
575582
576583msgid "``'f'``"
577584msgstr "``'f'``"
578585
579586msgid ""
580- "Fixed-point notation. Displays the number as a fixed-point number. The "
581- "default precision is ``6``."
587+ "Fixed-point notation. For a given precision ``p``, formats the number as a "
588+ "decimal number with exactly ``p`` digits following the decimal point. With "
589+ "no precision given, uses a precision of ``6`` digits after the decimal point "
590+ "for :class:`float`, and uses a precision large enough to show all "
591+ "coefficient digits for :class:`~decimal.Decimal`. If no digits follow the "
592+ "decimal point, the decimal point is also removed unless the ``#`` option is "
593+ "used."
582594msgstr ""
583595
584596msgid "``'F'``"
@@ -595,7 +607,8 @@ msgstr ""
595607msgid ""
596608"General format. For a given precision ``p >= 1``, this rounds the number to "
597609"``p`` significant digits and then formats the result in either fixed-point "
598- "format or in scientific notation, depending on its magnitude."
610+ "format or in scientific notation, depending on its magnitude. A precision of "
611+ "``0`` is treated as equivalent to a precision of ``1``."
599612msgstr ""
600613
601614msgid ""
@@ -611,14 +624,18 @@ msgid ""
611624msgstr ""
612625
613626msgid ""
614- "Positive and negative infinity, positive and negative zero, and nans, are "
615- "formatted as ``inf``, ``-inf``, ``0``, ``-0`` and ``nan`` respectively, "
616- "regardless of the precision."
627+ "With no precision given, uses a precision of ``6`` significant digits for :"
628+ "class:`float`. For :class:`~decimal.Decimal`, the coefficient of the result "
629+ "is formed from the coefficient digits of the value; scientific notation is "
630+ "used for values smaller than ``1e-6`` in absolute value and values where the "
631+ "place value of the least significant digit is larger than 1, and fixed-point "
632+ "notation is used otherwise."
617633msgstr ""
618634
619635msgid ""
620- "A precision of ``0`` is treated as equivalent to a precision of ``1``. The "
621- "default precision is ``6``."
636+ "Positive and negative infinity, positive and negative zero, and nans, are "
637+ "formatted as ``inf``, ``-inf``, ``0``, ``-0`` and ``nan`` respectively, "
638+ "regardless of the precision."
622639msgstr ""
623640
624641msgid "``'G'``"
@@ -643,10 +660,21 @@ msgid ""
643660msgstr ""
644661
645662msgid ""
646- "Similar to ``'g'``, except that fixed-point notation, when used, has at "
647- "least one digit past the decimal point. The default precision is as high as "
648- "needed to represent the particular value. The overall effect is to match the "
649- "output of :func:`str` as altered by the other format modifiers."
663+ "For :class:`float` this is the same as ``'g'``, except that when fixed-point "
664+ "notation is used to format the result, it always includes at least one digit "
665+ "past the decimal point. The precision used is as large as needed to "
666+ "represent the given value faithfully."
667+ msgstr ""
668+
669+ msgid ""
670+ "For :class:`~decimal.Decimal`, this is the same as either ``'g'`` or ``'G'`` "
671+ "depending on the value of ``context.capitals`` for the current decimal "
672+ "context."
673+ msgstr ""
674+
675+ msgid ""
676+ "The overall effect is to match the output of :func:`str` as altered by the "
677+ "other format modifiers."
650678msgstr ""
651679
652680msgid "Format examples"
0 commit comments