summaryrefslogtreecommitdiffstats
path: root/po/de/man3/getutent.3.po
diff options
context:
space:
mode:
Diffstat (limited to 'po/de/man3/getutent.3.po')
-rw-r--r--po/de/man3/getutent.3.po123
1 files changed, 25 insertions, 98 deletions
diff --git a/po/de/man3/getutent.3.po b/po/de/man3/getutent.3.po
index 8e78a54c..5870b0f4 100644
--- a/po/de/man3/getutent.3.po
+++ b/po/de/man3/getutent.3.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: manpages-l10n 4.21.0\n"
-"POT-Creation-Date: 2024-03-01 16:57+0100\n"
+"POT-Creation-Date: 2024-06-01 05:53+0200\n"
"PO-Revision-Date: 2024-02-16 16:57+0100\n"
"Last-Translator: Helge Kreutzmann <debian@helgefjell.de>\n"
"Language-Team: German <debian-l10n-german@lists.debian.org>\n"
@@ -26,16 +26,16 @@ msgid "getutent"
msgstr "getutent"
#. 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
@@ -737,7 +737,8 @@ msgstr ""
"B<ttyname>(3) prüfen."
#. 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>pwd.hE<gt>\n"
@@ -957,102 +958,22 @@ msgstr ""
"}\n"
#. type: TH
-#: debian-unstable opensuse-tumbleweed
+#: fedora-40 fedora-rawhide mageia-cauldron
#, no-wrap
-msgid "2023-07-20"
-msgstr "20. Juli 2023"
+msgid "2023-10-31"
+msgstr "31. Oktober 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
-#: debian-unstable opensuse-tumbleweed
+#. type: TH
+#: fedora-rawhide
#, no-wrap
-msgid ""
-"#include E<lt>pwd.hE<gt>\n"
-"#include E<lt>stdlib.hE<gt>\n"
-"#include E<lt>string.hE<gt>\n"
-"#include E<lt>time.hE<gt>\n"
-"#include E<lt>unistd.hE<gt>\n"
-"#include E<lt>utmp.hE<gt>\n"
-"\\&\n"
-"int\n"
-"main(void)\n"
-"{\n"
-" struct utmp entry;\n"
-"\\&\n"
-" system(\"echo before adding entry:;who\");\n"
-"\\&\n"
-" entry.ut_type = USER_PROCESS;\n"
-" entry.ut_pid = getpid();\n"
-" strcpy(entry.ut_line, ttyname(STDIN_FILENO) + strlen(\"/dev/\"));\n"
-" /* only correct for ptys named /dev/tty[pqr][0-9a-z] */\n"
-" strcpy(entry.ut_id, ttyname(STDIN_FILENO) + strlen(\"/dev/tty\"));\n"
-" time(&entry.ut_time);\n"
-" strcpy(entry.ut_user, getpwuid(getuid())-E<gt>pw_name);\n"
-" memset(entry.ut_host, 0, UT_HOSTSIZE);\n"
-" entry.ut_addr = 0;\n"
-" setutent();\n"
-" pututline(&entry);\n"
-"\\&\n"
-" system(\"echo after adding entry:;who\");\n"
-"\\&\n"
-" entry.ut_type = DEAD_PROCESS;\n"
-" memset(entry.ut_line, 0, UT_LINESIZE);\n"
-" entry.ut_time = 0;\n"
-" memset(entry.ut_user, 0, UT_NAMESIZE);\n"
-" setutent();\n"
-" pututline(&entry);\n"
-"\\&\n"
-" system(\"echo after removing entry:;who\");\n"
-"\\&\n"
-" endutent();\n"
-" exit(EXIT_SUCCESS);\n"
-"}\n"
-msgstr ""
-"#include E<lt>pwd.hE<gt>\n"
-"#include E<lt>stdlib.hE<gt>\n"
-"#include E<lt>string.hE<gt>\n"
-"#include E<lt>time.hE<gt>\n"
-"#include E<lt>unistd.hE<gt>\n"
-"#include E<lt>utmp.hE<gt>\n"
-"\\&\n"
-"int\n"
-"main(void)\n"
-"{\n"
-" struct utmp entry;\n"
-"\\&\n"
-" system(\"echo Vor dem Hinzufügen des Eintrags:;who\");\n"
-"\\&\n"
-" entry.ut_type = USER_PROCESS;\n"
-" entry.ut_pid = getpid();\n"
-" strcpy(entry.ut_line, ttyname(STDIN_FILENO) + strlen(\"/dev/\"));\n"
-" /* stimmt nur für ptys namens /dev/tty[pqr][0-9a-z] */\n"
-" strcpy(entry.ut_id, ttyname(STDIN_FILENO) + strlen(\"/dev/tty\"));\n"
-" time(&entry.ut_time);\n"
-" strcpy(entry.ut_user, getpwuid(getuid())-E<gt>pw_name);\n"
-" memset(entry.ut_host, 0, UT_HOSTSIZE);\n"
-" entry.ut_addr = 0;\n"
-" setutent();\n"
-" pututline(&entry);\n"
-"\\&\n"
-" system(\"echo Nach dem Hinzufügen des Eintrags:;who\");\n"
-"\\&\n"
-" entry.ut_type = DEAD_PROCESS;\n"
-" memset(entry.ut_line, 0, UT_LINESIZE);\n"
-" entry.ut_time = 0;\n"
-" memset(entry.ut_user, 0, UT_NAMESIZE);\n"
-" setutent();\n"
-" pututline(&entry);\n"
-"\\&\n"
-" system(\"echo Nach dem Entfernen des Eintrags:;who\");\n"
-"\\&\n"
-" endutent();\n"
-" exit(EXIT_SUCCESS);\n"
-"}\n"
+msgid "Linux man-pages 6.7"
+msgstr "Linux man-pages 6.7"
#. type: TH
#: opensuse-leap-15-6
@@ -1065,3 +986,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)"