summaryrefslogtreecommitdiffstats
path: root/po/fr/man3/rtime.3.po
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-17 10:52:03 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-17 10:52:03 +0000
commit932e4432596447eb9331cc2a2bb74a26a35b4efc (patch)
tree95161711ea07fd64f0c82d6e7943024c033dd5a8 /po/fr/man3/rtime.3.po
parentAdding debian version 4.22.0-1. (diff)
downloadmanpages-l10n-932e4432596447eb9331cc2a2bb74a26a35b4efc.tar.xz
manpages-l10n-932e4432596447eb9331cc2a2bb74a26a35b4efc.zip
Merging upstream version 4.23.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'po/fr/man3/rtime.3.po')
-rw-r--r--po/fr/man3/rtime.3.po95
1 files changed, 72 insertions, 23 deletions
diff --git a/po/fr/man3/rtime.3.po b/po/fr/man3/rtime.3.po
index 628e6bd4..a63f3408 100644
--- a/po/fr/man3/rtime.3.po
+++ b/po/fr/man3/rtime.3.po
@@ -15,12 +15,12 @@
# Simon Paillard <simon.paillard@resel.enst-bretagne.fr>, 2006.
# Denis Barbier <barbier@debian.org>, 2006, 2010.
# David Prévot <david@tilapin.org>, 2010, 2012.
-# Jean-Pierre Giraud <jean-pierregiraud@neuf.fr>, 2023.
+# Jean-Pierre Giraud <jean-pierregiraud@neuf.fr>, 2023-2024.
msgid ""
msgstr ""
-"Project-Id-Version: perkamon\n"
-"POT-Creation-Date: 2024-03-01 17:06+0100\n"
-"PO-Revision-Date: 2023-04-13 22:59+0200\n"
+"Project-Id-Version: manpages-l10n 4.22.0\n"
+"POT-Creation-Date: 2024-06-01 06:16+0200\n"
+"PO-Revision-Date: 2024-04-22 12:25+0200\n"
"Last-Translator: Jean-Pierre Giraud <jean-pierregiraud@neuf.fr\n"
"Language-Team: French <debian-l10n-french@lists.debian.org>\n"
"Language: fr\n"
@@ -28,7 +28,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Lokalize 22.12.1\n"
+"X-Generator: Lokalize 22.12.3\n"
#. type: TH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
@@ -38,16 +38,16 @@ msgid "rtime"
msgstr "rtime"
#. type: TH
-#: archlinux fedora-40 fedora-rawhide mageia-cauldron
+#: archlinux debian-unstable opensuse-tumbleweed
#, no-wrap
-msgid "2023-10-31"
-msgstr "31 octobre 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 "Pages du manuel de Linux 6.06"
+msgid "Linux man-pages 6.8"
+msgstr "Pages du manuel de Linux 6.8"
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
@@ -316,13 +316,13 @@ msgstr "Seul IPv4 est supporté."
#. .IR <rpc/auth_des.h> .
#. type: Plain text
#. #-#-#-#-# debian-unstable: rtime.3.pot (PACKAGE VERSION) #-#-#-#-#
-#. .PP
+#. .P
#. Libc5 uses the prototype
-#. .PP
+#. .P
#. .nf
#. int rtime(struct sockaddr_in *, struct timeval *, struct timeval *);
#. .fi
-#. .PP
+#. .P
#. and requires
#. .I <sys/time.h>
#. instead of
@@ -381,13 +381,13 @@ msgstr "Seul IPv4 est supporté."
#. .IR <rpc/auth_des.h> .
#. type: Plain text
#. #-#-#-#-# opensuse-tumbleweed: rtime.3.pot (PACKAGE VERSION) #-#-#-#-#
-#. .PP
+#. .P
#. Libc5 uses the prototype
-#. .PP
+#. .P
#. .nf
#. int rtime(struct sockaddr_in *, struct timeval *, struct timeval *);
#. .fi
-#. .PP
+#. .P
#. and requires
#. .I <sys/time.h>
#. instead of
@@ -490,6 +490,43 @@ msgid ""
" exit(EXIT_SUCCESS);\n"
"}\n"
msgstr ""
+"#include E<lt>errno.hE<gt>\n"
+"#include E<lt>netdb.hE<gt>\n"
+"#include E<lt>stdio.hE<gt>\n"
+"#include E<lt>stdlib.hE<gt>\n"
+"#include E<lt>string.hE<gt>\n"
+"#include E<lt>time.hE<gt>\n"
+"\\&\n"
+"#include E<lt>rpc/auth_des.hE<gt>\n"
+"\\&\n"
+"static int use_tcp = 0;\n"
+"static const char servername[] = \"linux\";\n"
+"\\&\n"
+"int\n"
+"main(void)\n"
+"{\n"
+" int ret;\n"
+" time_t t;\n"
+" struct hostent *hent;\n"
+" struct rpc_timeval time1 = {0, 0};\n"
+" struct rpc_timeval timeout = {1, 0};\n"
+" struct sockaddr_in name;\n"
+"\\&\n"
+" memset(&name, 0, sizeof(name));\n"
+" sethostent(1);\n"
+" hent = gethostbyname(servername);\n"
+" memcpy(&name.sin_addr, hent-E<gt>h_addr, hent-E<gt>h_length);\n"
+"\\&\n"
+" ret = rtime(&name, &time1, use_tcp ? NULL : &timeout);\n"
+" if (ret E<lt> 0)\n"
+" perror(\"rtime error\");\n"
+" else {\n"
+" t = time1.tv_sec;\n"
+" printf(\"%s\\en\", ctime(&t));\n"
+" }\n"
+"\\&\n"
+" exit(EXIT_SUCCESS);\n"
+"}\n"
#. SRC END
#. type: SH
@@ -622,19 +659,31 @@ msgstr ""
"}\n"
#. type: TH
-#: debian-unstable opensuse-tumbleweed
+#: fedora-40 fedora-rawhide mageia-cauldron
+#, no-wrap
+msgid "2023-10-31"
+msgstr "31 octobre 2023"
+
+#. type: TH
+#: fedora-40 mageia-cauldron
#, no-wrap
-msgid "2023-07-20"
-msgstr "20 juillet 2023"
+msgid "Linux man-pages 6.06"
+msgstr "Pages du manuel de Linux 6.06"
#. type: TH
-#: debian-unstable opensuse-tumbleweed
+#: fedora-rawhide
#, no-wrap
-msgid "Linux man-pages 6.05.01"
-msgstr "Pages du manuel de Linux 6.05.01"
+msgid "Linux man-pages 6.7"
+msgstr "Pages du manuel de Linux 6.7"
#. type: TH
#: opensuse-leap-15-6
#, no-wrap
msgid "Linux man-pages 6.04"
msgstr "Pages du manuel de Linux 6.04"
+
+#. type: TH
+#: opensuse-tumbleweed
+#, no-wrap
+msgid "Linux man-pages (unreleased)"
+msgstr "Pages du manuel de Linux (non publiées)"