From 2c3307fb903f427be3d021c5780b75cac9af2ce8 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 17 Jun 2024 12:52:33 +0200 Subject: Merging upstream version 4.23.0. Signed-off-by: Daniel Baumann --- po/ru/man2/pidfd_open.2.po | 109 ++++++++++++++++++++++++++++++++++++--------- 1 file changed, 87 insertions(+), 22 deletions(-) (limited to 'po/ru/man2/pidfd_open.2.po') diff --git a/po/ru/man2/pidfd_open.2.po b/po/ru/man2/pidfd_open.2.po index 5731f717..43f4e21c 100644 --- a/po/ru/man2/pidfd_open.2.po +++ b/po/ru/man2/pidfd_open.2.po @@ -4,14 +4,14 @@ # Alexey, 2016. # Azamat Hackimov , 2014-2017. # kogamatranslator49 , 2015. -# Kogan, Darima , 2014. +# Darima Kogan , 2014. # Max Is , 2016. # Yuri Kozlov , 2011-2019. # Иван Павлов , 2017. msgid "" msgstr "" "Project-Id-Version: manpages-l10n\n" -"POT-Creation-Date: 2024-03-01 17:03+0100\n" +"POT-Creation-Date: 2024-06-01 06:08+0200\n" "PO-Revision-Date: 2019-10-12 08:58+0300\n" "Last-Translator: Yuri Kozlov \n" "Language-Team: Russian \n" @@ -19,9 +19,9 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || " -"(n%100>=11 && n%100<=14)? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" "X-Generator: Lokalize 2.0\n" #. type: TH @@ -32,16 +32,17 @@ msgid "pidfd_open" msgstr "pidfd_open" #. type: TH -#: archlinux fedora-40 fedora-rawhide mageia-cauldron +#: archlinux debian-unstable opensuse-tumbleweed #, no-wrap -msgid "2023-10-31" -msgstr "31 октября 2023 г." +msgid "2024-05-02" +msgstr "2 мая 2024 г." #. type: TH -#: archlinux fedora-40 fedora-rawhide mageia-cauldron -#, no-wrap -msgid "Linux man-pages 6.06" -msgstr "Linux man-pages 6.06" +#: archlinux debian-unstable +#, fuzzy, no-wrap +#| msgid "Linux man-pages 6.7" +msgid "Linux man-pages 6.8" +msgstr "Linux man-pages 6.7" #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide @@ -306,7 +307,7 @@ msgstr "Linux" #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "NOTES" -msgstr "ЗАМЕЧАНИЯ" +msgstr "ПРИМЕЧАНИЯ" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide @@ -485,8 +486,7 @@ msgid "Program source" msgstr "Исходный код программы" #. type: Plain text -#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron -#: opensuse-tumbleweed +#: archlinux debian-unstable opensuse-tumbleweed #, no-wrap msgid "" "#define _GNU_SOURCE\n" @@ -494,6 +494,7 @@ msgid "" "#include Estdio.hE\n" "#include Estdlib.hE\n" "#include Esys/syscall.hE\n" +"#include Esys/types.hE\n" "#include Eunistd.hE\n" "\\&\n" "static int\n" @@ -542,7 +543,7 @@ msgstr "" #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "SEE ALSO" -msgstr "СМ. ТАКЖЕ" +msgstr "СМОТРИТЕ ТАКЖЕ" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide @@ -726,16 +727,73 @@ msgstr "" "}\n" #. type: TH -#: debian-unstable opensuse-tumbleweed +#: fedora-40 fedora-rawhide mageia-cauldron #, no-wrap -msgid "2023-05-03" -msgstr "3 мая 2023 г." +msgid "2023-10-31" +msgstr "31 октября 2023 г." #. 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 +#: fedora-40 fedora-rawhide mageia-cauldron +#, no-wrap +msgid "" +"#define _GNU_SOURCE\n" +"#include Epoll.hE\n" +"#include Estdio.hE\n" +"#include Estdlib.hE\n" +"#include Esys/syscall.hE\n" +"#include Eunistd.hE\n" +"\\&\n" +"static int\n" +"pidfd_open(pid_t pid, unsigned int flags)\n" +"{\n" +" return syscall(SYS_pidfd_open, pid, flags);\n" +"}\n" +"\\&\n" +"int\n" +"main(int argc, char *argv[])\n" +"{\n" +" int pidfd, ready;\n" +" struct pollfd pollfd;\n" +"\\&\n" +" if (argc != 2) {\n" +" fprintf(stderr, \"Usage: %s EpidE\\en\", argv[0]);\n" +" exit(EXIT_SUCCESS);\n" +" }\n" +"\\&\n" +" pidfd = pidfd_open(atoi(argv[1]), 0);\n" +" if (pidfd == -1) {\n" +" perror(\"pidfd_open\");\n" +" exit(EXIT_FAILURE);\n" +" }\n" +"\\&\n" +" pollfd.fd = pidfd;\n" +" pollfd.events = POLLIN;\n" +"\\&\n" +" ready = poll(&pollfd, 1, -1);\n" +" if (ready == -1) {\n" +" perror(\"poll\");\n" +" exit(EXIT_FAILURE);\n" +" }\n" +"\\&\n" +" printf(\"Events (%#x): POLLIN is %sset\\en\", pollfd.revents,\n" +" (pollfd.revents & POLLIN) ? \"\" : \"not \");\n" +"\\&\n" +" close(pidfd);\n" +" exit(EXIT_SUCCESS);\n" +"}\n" +msgstr "" + +#. type: TH +#: fedora-rawhide +#, no-wrap +msgid "Linux man-pages 6.7" +msgstr "Linux man-pages 6.7" #. type: TH #: opensuse-leap-15-6 @@ -748,3 +806,10 @@ msgstr "3 апреля 2023 г." #, no-wrap msgid "Linux man-pages 6.04" msgstr "Linux man-pages 6.04" + +#. type: TH +#: opensuse-tumbleweed +#, fuzzy, no-wrap +#| msgid "Linux man-pages 6.7" +msgid "Linux man-pages (unreleased)" +msgstr "Linux man-pages 6.7" -- cgit v1.2.3