From 4ad94864781f48b1a4b77f9cfb934622bf756ba1 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 17 Jun 2024 12:51:52 +0200 Subject: Adding upstream version 4.23.0. Signed-off-by: Daniel Baumann --- po/es/man2/wait.2.po | 97 +++++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 80 insertions(+), 17 deletions(-) (limited to 'po/es/man2/wait.2.po') diff --git a/po/es/man2/wait.2.po b/po/es/man2/wait.2.po index 6f5dfdac..4131d4d7 100644 --- a/po/es/man2/wait.2.po +++ b/po/es/man2/wait.2.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: manpages-l10n\n" -"POT-Creation-Date: 2024-03-01 17:13+0100\n" +"POT-Creation-Date: 2024-06-01 06:34+0200\n" "PO-Revision-Date: 2004-12-24 19:53+0200\n" "Last-Translator: Miguel Pérez Ibars \n" "Language-Team: Spanish \n" @@ -26,16 +26,16 @@ msgid "wait" msgstr "waitid()" #. type: TH -#: archlinux fedora-40 fedora-rawhide mageia-cauldron +#: archlinux debian-unstable opensuse-tumbleweed #, no-wrap -msgid "2023-10-31" -msgstr "31 Octubre 2023" +msgid "2024-05-02" +msgstr "2 Mayo 2024" #. type: TH -#: archlinux fedora-40 fedora-rawhide mageia-cauldron +#: archlinux debian-unstable #, no-wrap -msgid "Linux man-pages 6.06" -msgstr "Páginas de manual de Linux 6.06" +msgid "Linux man-pages 6.8" +msgstr "Páginas de Manual de Linux 6.8" #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide @@ -1280,13 +1280,13 @@ msgid "Program source" msgstr "Código fuente" #. type: Plain text -#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron -#: opensuse-tumbleweed +#: archlinux debian-unstable opensuse-tumbleweed #, no-wrap msgid "" "#include Estdint.hE\n" "#include Estdio.hE\n" "#include Estdlib.hE\n" +"#include Esys/types.hE\n" "#include Esys/wait.hE\n" "#include Eunistd.hE\n" "\\&\n" @@ -1361,7 +1361,7 @@ msgstr "5 Febrero 2023" #: debian-bookworm #, no-wrap msgid "Linux man-pages 6.03" -msgstr "Páginas de manual de Linux 6.03" +msgstr "Páginas de Manual de Linux 6.03" #. type: Plain text #: debian-bookworm opensuse-leap-15-6 @@ -1465,16 +1465,73 @@ msgid "" msgstr "" #. type: TH -#: debian-unstable opensuse-tumbleweed +#: fedora-40 fedora-rawhide mageia-cauldron #, no-wrap -msgid "2023-05-03" -msgstr "3 Mayo 2023" +msgid "2023-10-31" +msgstr "31 Octubre 2023" #. type: TH -#: debian-unstable opensuse-tumbleweed +#: fedora-40 mageia-cauldron #, no-wrap -msgid "Linux man-pages 6.05.01" -msgstr "Páginas de manual de Linux 6.05.01" +msgid "Linux man-pages 6.06" +msgstr "Páginas de Manual de Linux 6.06" + +#. type: Plain text +#: fedora-40 fedora-rawhide mageia-cauldron +#, no-wrap +msgid "" +"#include Estdint.hE\n" +"#include Estdio.hE\n" +"#include Estdlib.hE\n" +"#include Esys/wait.hE\n" +"#include Eunistd.hE\n" +"\\&\n" +"int\n" +"main(int argc, char *argv[])\n" +"{\n" +" int wstatus;\n" +" pid_t cpid, w;\n" +"\\&\n" +" cpid = fork();\n" +" if (cpid == -1) {\n" +" perror(\"fork\");\n" +" exit(EXIT_FAILURE);\n" +" }\n" +"\\&\n" +" if (cpid == 0) { /* Code executed by child */\n" +" printf(\"Child PID is %jd\\en\", (intmax_t) getpid());\n" +" if (argc == 1)\n" +" pause(); /* Wait for signals */\n" +" _exit(atoi(argv[1]));\n" +"\\&\n" +" } else { /* Code executed by parent */\n" +" do {\n" +" w = waitpid(cpid, &wstatus, WUNTRACED | WCONTINUED);\n" +" if (w == -1) {\n" +" perror(\"waitpid\");\n" +" exit(EXIT_FAILURE);\n" +" }\n" +"\\&\n" +" if (WIFEXITED(wstatus)) {\n" +" printf(\"exited, status=%d\\en\", WEXITSTATUS(wstatus));\n" +" } else if (WIFSIGNALED(wstatus)) {\n" +" printf(\"killed by signal %d\\en\", WTERMSIG(wstatus));\n" +" } else if (WIFSTOPPED(wstatus)) {\n" +" printf(\"stopped by signal %d\\en\", WSTOPSIG(wstatus));\n" +" } else if (WIFCONTINUED(wstatus)) {\n" +" printf(\"continued\\en\");\n" +" }\n" +" } while (!WIFEXITED(wstatus) && !WIFSIGNALED(wstatus));\n" +" exit(EXIT_SUCCESS);\n" +" }\n" +"}\n" +msgstr "" + +#. type: TH +#: fedora-rawhide +#, no-wrap +msgid "Linux man-pages 6.7" +msgstr "Páginas de Manual de Linux 6.7" #. type: TH #: opensuse-leap-15-6 @@ -1486,4 +1543,10 @@ msgstr "30 Marzo 2023" #: opensuse-leap-15-6 #, no-wrap msgid "Linux man-pages 6.04" -msgstr "Linux man-pages 6.04" +msgstr "Páginas de Manual de Linux 6.04" + +#. type: TH +#: opensuse-tumbleweed +#, no-wrap +msgid "Linux man-pages (unreleased)" +msgstr "Páginas de Manual de Linux (no publicadas)" -- cgit v1.2.3