summaryrefslogtreecommitdiffstats
path: root/po/pl/man3/frexp.3.po
diff options
context:
space:
mode:
Diffstat (limited to 'po/pl/man3/frexp.3.po')
-rw-r--r--po/pl/man3/frexp.3.po111
1 files changed, 51 insertions, 60 deletions
diff --git a/po/pl/man3/frexp.3.po b/po/pl/man3/frexp.3.po
index d855ef7e..f4c899cd 100644
--- a/po/pl/man3/frexp.3.po
+++ b/po/pl/man3/frexp.3.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: manpages-pl\n"
-"POT-Creation-Date: 2024-03-01 16:56+0100\n"
+"POT-Creation-Date: 2024-06-01 05:51+0200\n"
"PO-Revision-Date: 2019-08-08 19:54+0100\n"
"Last-Translator: Robert Luberda <robert@debian.org>\n"
"Language-Team: Polish <manpages-pl-list@lists.sourceforge.net>\n"
@@ -26,16 +26,16 @@ msgid "frexp"
msgstr "frexp"
#. type: TH
-#: archlinux fedora-40 fedora-rawhide mageia-cauldron
+#: archlinux debian-unstable opensuse-tumbleweed
#, no-wrap
-msgid "2024-01-29"
-msgstr "29 stycznia 2024 r."
+msgid "2024-05-02"
+msgstr "2 maja 2024 r."
#. type: TH
-#: archlinux fedora-40 fedora-rawhide mageia-cauldron
+#: archlinux debian-unstable
#, no-wrap
-msgid "Linux man-pages 6.06"
-msgstr "Linux man-pages 6.06"
+msgid "Linux man-pages 6.8"
+msgstr "Linux man-pages 6.8"
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
@@ -51,8 +51,8 @@ msgid ""
"frexp, frexpf, frexpl - convert floating-point number to fractional and "
"integral components"
msgstr ""
-"frexp, frexpf, frexpl - konwersja liczby zmiennopozycyjnej na część ułamkową "
-"i całkowitą"
+"frexp, frexpf, frexpl - konwertuje liczbę zmiennoprzecinkową na część "
+"ułamkową i całkowitą"
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
@@ -329,12 +329,7 @@ msgstr "Poniższy program zwraca następujące wyniki:"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
-#, fuzzy, no-wrap
-#| msgid ""
-#| "$B< ./a.out 2560>\n"
-#| "frexp(2560, &e) = 0.625: 0.625 * 2^12 = 2560\n"
-#| "$B< ./a.out -4>\n"
-#| "frexp(-4, &e) = -0.5: -0.5 * 2^3 = -4\n"
+#, no-wrap
msgid ""
"$B< ./a.out 2560>\n"
"frexp(2560, &e) = 0.625: 0.625 * 2\\[ha]12 = 2560\n"
@@ -342,9 +337,9 @@ msgid ""
"frexp(-4, &e) = -0.5: -0.5 * 2\\[ha]3 = -4\n"
msgstr ""
"$B< ./a.out 2560>\n"
-"frexp(2560, &e) = 0.625: 0.625 * 2^12 = 2560\n"
+"frexp(2560, &e) = 0.625: 0.625 * 2\\[ha]12 = 2560\n"
"$B< ./a.out -4>\n"
-"frexp(-4, &e) = -0.5: -0.5 * 2^3 = -4\n"
+"frexp(-4, &e) = -0.5: -0.5 * 2\\[ha]3 = -4\n"
#. type: SS
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
@@ -354,7 +349,8 @@ msgid "Program source"
msgstr "Kod źródłowy programu"
#. type: Plain text
-#: archlinux fedora-40 fedora-rawhide mageia-cauldron
+#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
+#: opensuse-tumbleweed
#, no-wrap
msgid ""
"#include E<lt>float.hE<gt>\n"
@@ -375,6 +371,23 @@ msgid ""
" exit(EXIT_SUCCESS);\n"
"}\n"
msgstr ""
+"#include E<lt>float.hE<gt>\n"
+"#include E<lt>math.hE<gt>\n"
+"#include E<lt>stdio.hE<gt>\n"
+"#include E<lt>stdlib.hE<gt>\n"
+"\\&\n"
+"int\n"
+"main(int argc, char *argv[])\n"
+"{\n"
+" double x, r;\n"
+" int exp;\n"
+"\\&\n"
+" x = strtod(argv[1], NULL);\n"
+" r = frexp(x, &exp);\n"
+"\\&\n"
+" printf(\"frexp(%g, &e) = %g: %g * %d\\[ha]%d = %g\\en\", x, r, r, 2, exp, x);\n"
+" exit(EXIT_SUCCESS);\n"
+"}\n"
#. SRC END
#. type: SH
@@ -415,20 +428,15 @@ msgstr ""
#. type: Plain text
#: debian-bookworm opensuse-leap-15-6
-#, fuzzy, no-wrap
-#| msgid ""
-#| "#include E<lt>math.hE<gt>\n"
-#| "#include E<lt>float.hE<gt>\n"
-#| "#include E<lt>stdio.hE<gt>\n"
-#| "#include E<lt>stdlib.hE<gt>\n"
+#, no-wrap
msgid ""
"#include E<lt>float.hE<gt>\n"
"#include E<lt>math.hE<gt>\n"
"#include E<lt>stdio.hE<gt>\n"
"#include E<lt>stdlib.hE<gt>\n"
msgstr ""
-"#include E<lt>math.hE<gt>\n"
"#include E<lt>float.hE<gt>\n"
+"#include E<lt>math.hE<gt>\n"
"#include E<lt>stdio.hE<gt>\n"
"#include E<lt>stdlib.hE<gt>\n"
@@ -460,58 +468,35 @@ msgstr ""
#. type: Plain text
#: debian-bookworm opensuse-leap-15-6
-#, fuzzy, no-wrap
-#| msgid ""
-#| " printf(\"frexp(%g, &e) = %g: %g * %d^%d = %g\\en\",\n"
-#| " x, r, r, FLT_RADIX, exp, x);\n"
-#| " exit(EXIT_SUCCESS);\n"
-#| "}\n"
+#, no-wrap
msgid ""
" printf(\"frexp(%g, &e) = %g: %g * %d\\[ha]%d = %g\\en\",\n"
" x, r, r, FLT_RADIX, exp, x);\n"
" exit(EXIT_SUCCESS);\n"
"}\n"
msgstr ""
-" printf(\"frexp(%g, &e) = %g: %g * %d^%d = %g\\en\",\n"
+" printf(\"frexp(%g, &e) = %g: %g * %d\\[ha]%d = %g\\en\",\n"
" x, r, r, FLT_RADIX, exp, x);\n"
" exit(EXIT_SUCCESS);\n"
"}\n"
#. type: TH
-#: debian-unstable opensuse-tumbleweed
+#: fedora-40 fedora-rawhide mageia-cauldron
#, no-wrap
-msgid "2023-07-20"
-msgstr "20 lipca 2023 r."
+msgid "2024-01-29"
+msgstr "29 stycznia 2024 r."
#. type: TH
-#: debian-unstable opensuse-tumbleweed
+#: fedora-40 mageia-cauldron
#, no-wrap
-msgid "Linux man-pages 6.05.01"
-msgstr "Linux man-pages 6.05.01"
+msgid "Linux man-pages 6.06"
+msgstr "Linux man-pages 6.06"
-#. type: Plain text
-#: debian-unstable opensuse-tumbleweed
+#. type: TH
+#: fedora-rawhide
#, no-wrap
-msgid ""
-"#include E<lt>float.hE<gt>\n"
-"#include E<lt>math.hE<gt>\n"
-"#include E<lt>stdio.hE<gt>\n"
-"#include E<lt>stdlib.hE<gt>\n"
-"\\&\n"
-"int\n"
-"main(int argc, char *argv[])\n"
-"{\n"
-" double x, r;\n"
-" int exp;\n"
-"\\&\n"
-" x = strtod(argv[1], NULL);\n"
-" r = frexp(x, &exp);\n"
-"\\&\n"
-" printf(\"frexp(%g, &e) = %g: %g * %d\\[ha]%d = %g\\en\",\n"
-" x, r, r, FLT_RADIX, exp, x);\n"
-" exit(EXIT_SUCCESS);\n"
-"}\n"
-msgstr ""
+msgid "Linux man-pages 6.7"
+msgstr "Linux man-pages 6.7"
#. type: TH
#: opensuse-leap-15-6
@@ -524,3 +509,9 @@ msgstr "30 marca 2023 r."
#, no-wrap
msgid "Linux man-pages 6.04"
msgstr "Linux man-pages 6.04"
+
+#. type: TH
+#: opensuse-tumbleweed
+#, no-wrap
+msgid "Linux man-pages (unreleased)"
+msgstr "Linux man-pages (niewydane)"