diff options
Diffstat (limited to 'po/de/man2/chown.2.po')
-rw-r--r-- | po/de/man2/chown.2.po | 125 |
1 files changed, 108 insertions, 17 deletions
diff --git a/po/de/man2/chown.2.po b/po/de/man2/chown.2.po index 420068e4..6ca34f2b 100644 --- a/po/de/man2/chown.2.po +++ b/po/de/man2/chown.2.po @@ -8,9 +8,9 @@ # Helge Kreutzmann <debian@helgefjell.de>, 2012, 2014, 2017, 2021, 2023. msgid "" msgstr "" -"Project-Id-Version: manpages-l10n 4.19.0\n" -"POT-Creation-Date: 2024-03-01 16:54+0100\n" -"PO-Revision-Date: 2024-02-18 10:02+0100\n" +"Project-Id-Version: manpages-l10n 4.22.0\n" +"POT-Creation-Date: 2024-06-01 05:44+0200\n" +"PO-Revision-Date: 2024-06-01 13:48+0200\n" "Last-Translator: Helge Kreutzmann <debian@helgefjell.de>\n" "Language-Team: German <debian-l10n-german@lists.debian.org>\n" "Language: de\n" @@ -27,16 +27,16 @@ msgid "chown" msgstr "chown" #. type: TH -#: archlinux fedora-40 fedora-rawhide mageia-cauldron +#: archlinux debian-unstable opensuse-tumbleweed #, no-wrap -msgid "2023-10-31" -msgstr "31. Oktober 2023" +msgid "2024-05-02" +msgstr "2. Mai 2024" #. 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 @@ -922,13 +922,13 @@ msgid "Program source" msgstr "Programmquelltext" #. type: Plain text -#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron -#: opensuse-tumbleweed +#: archlinux debian-unstable opensuse-tumbleweed #, no-wrap msgid "" "#include E<lt>pwd.hE<gt>\n" "#include E<lt>stdio.hE<gt>\n" "#include E<lt>stdlib.hE<gt>\n" +"#include E<lt>sys/types.hE<gt>\n" "#include E<lt>unistd.hE<gt>\n" "\\&\n" "int\n" @@ -966,6 +966,7 @@ msgstr "" "#include E<lt>pwd.hE<gt>\n" "#include E<lt>stdio.hE<gt>\n" "#include E<lt>stdlib.hE<gt>\n" +"#include E<lt>sys/types.hE<gt>\n" "#include E<lt>unistd.hE<gt>\n" "\\&\n" "int\n" @@ -1162,16 +1163,100 @@ msgstr "" "}\n" #. type: TH -#: debian-unstable opensuse-tumbleweed +#: fedora-40 fedora-rawhide mageia-cauldron +#, no-wrap +msgid "2023-10-31" +msgstr "31. Oktober 2023" + +#. type: TH +#: fedora-40 mageia-cauldron +#, no-wrap +msgid "Linux man-pages 6.06" +msgstr "Linux man-pages 6.06" + +#. type: Plain text +#: fedora-40 fedora-rawhide mageia-cauldron #, no-wrap -msgid "2023-05-03" -msgstr "3. Mai 2023" +msgid "" +"#include E<lt>pwd.hE<gt>\n" +"#include E<lt>stdio.hE<gt>\n" +"#include E<lt>stdlib.hE<gt>\n" +"#include E<lt>unistd.hE<gt>\n" +"\\&\n" +"int\n" +"main(int argc, char *argv[])\n" +"{\n" +" char *endptr;\n" +" uid_t uid;\n" +" struct passwd *pwd;\n" +"\\&\n" +" if (argc != 3 || argv[1][0] == \\[aq]\\e0\\[aq]) {\n" +" fprintf(stderr, \"%s E<lt>ownerE<gt> E<lt>fileE<gt>\\en\", argv[0]);\n" +" exit(EXIT_FAILURE);\n" +" }\n" +"\\&\n" +" uid = strtol(argv[1], &endptr, 10); /* Allow a numeric string */\n" +"\\&\n" +" if (*endptr != \\[aq]\\e0\\[aq]) { /* Was not pure numeric string */\n" +" pwd = getpwnam(argv[1]); /* Try getting UID for username */\n" +" if (pwd == NULL) {\n" +" perror(\"getpwnam\");\n" +" exit(EXIT_FAILURE);\n" +" }\n" +"\\&\n" +" uid = pwd-E<gt>pw_uid;\n" +" }\n" +"\\&\n" +" if (chown(argv[2], uid, -1) == -1) {\n" +" perror(\"chown\");\n" +" exit(EXIT_FAILURE);\n" +" }\n" +"\\&\n" +" exit(EXIT_SUCCESS);\n" +"}\n" +msgstr "" +"#include E<lt>pwd.hE<gt>\n" +"#include E<lt>stdio.hE<gt>\n" +"#include E<lt>stdlib.hE<gt>\n" +"#include E<lt>unistd.hE<gt>\n" +"\\&\n" +"int\n" +"main(int argc, char *argv[])\n" +"{\n" +" char *endptr;\n" +" uid_t uid;\n" +" struct passwd *pwd;\n" +"\\&\n" +" if (argc != 3 || argv[1][0] == \\[aq]\\e0\\[aq]) {\n" +" fprintf(stderr, \"%s E<lt>EigentümerE<gt> E<lt>DateiE<gt>\\en\", argv[0]);\n" +" exit(EXIT_FAILURE);\n" +" }\n" +"\\&\n" +" uid = strtol(argv[1], &endptr, 10); /* Eine nummerische Zeichenkette erlauben */\n" +"\\&\n" +" if (*endptr != \\[aq]\\e0\\[aq]) { /* War keine reine nummerische Zeichenkette */\n" +" pwd = getpwnam(argv[1]); /* Versuchen, eine UID für den Benutzernamen zu erhalten */\n" +" if (pwd == NULL) {\n" +" perror(\"getpwnam\");\n" +" exit(EXIT_FAILURE);\n" +" }\n" +"\\&\n" +" uid = pwd-E<gt>pw_uid;\n" +" }\n" +"\\&\n" +" if (chown(argv[2], uid, -1) == -1) {\n" +" perror(\"chown\");\n" +" exit(EXIT_FAILURE);\n" +" }\n" +"\\&\n" +" exit(EXIT_SUCCESS);\n" +"}\n" #. type: TH -#: debian-unstable opensuse-tumbleweed +#: fedora-rawhide #, no-wrap -msgid "Linux man-pages 6.05.01" -msgstr "Linux man-pages 6.05.01" +msgid "Linux man-pages 6.7" +msgstr "Linux man-pages 6.7" #. type: TH #: opensuse-leap-15-6 @@ -1184,3 +1269,9 @@ msgstr "30. März 2023" #, no-wrap msgid "Linux man-pages 6.04" msgstr "Linux-Handbuchseiten 6.04" + +#. type: TH +#: opensuse-tumbleweed +#, no-wrap +msgid "Linux man-pages (unreleased)" +msgstr "Linux man-pages (unveröffentlicht)" |