summaryrefslogtreecommitdiffstats
path: root/po/fr/man3/pthread_once.3.po
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--po/fr/man3/pthread_once.3.po102
1 files changed, 58 insertions, 44 deletions
diff --git a/po/fr/man3/pthread_once.3.po b/po/fr/man3/pthread_once.3.po
index d8fa7382..aee11bc9 100644
--- a/po/fr/man3/pthread_once.3.po
+++ b/po/fr/man3/pthread_once.3.po
@@ -13,70 +13,71 @@
msgid ""
msgstr ""
"Project-Id-Version: glibc\n"
-"POT-Creation-Date: 2024-03-01 17:04+0100\n"
-"PO-Revision-Date: 2024-02-19 17:02+0100\n"
+"POT-Creation-Date: 2024-06-01 06:13+0200\n"
+"PO-Revision-Date: 2024-05-08 09:08+0200\n"
"Last-Translator: Thomas Blein <tblein@tblein.eu>\n"
"Language-Team: French <debian-l10n-french@lists.debian.org>\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 1.5\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Plural-Forms: nplurals=2; plural=n > 1;\n"
+"X-Generator: Lokalize 22.12.3\n"
#. type: TH
-#: archlinux fedora-40 fedora-rawhide mageia-cauldron
+#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
+#: opensuse-tumbleweed
#, no-wrap
msgid "pthread_once"
-msgstr ""
+msgstr "pthread_once"
#. 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
-#: mageia-cauldron
+#: mageia-cauldron opensuse-tumbleweed
#, no-wrap
msgid "NAME"
msgstr "NOM"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
-#: mageia-cauldron
+#: mageia-cauldron opensuse-tumbleweed
msgid "pthread_once - once-only initialization"
msgstr "pthread_once - Exécution unique"
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
-#: mageia-cauldron
+#: mageia-cauldron opensuse-tumbleweed
#, no-wrap
msgid "SYNOPSIS"
msgstr "SYNOPSIS"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
-#: mageia-cauldron
+#: mageia-cauldron opensuse-tumbleweed
msgid "B<#include E<lt>pthread.hE<gt>>"
msgstr "B<#include E<lt>pthread.hE<gt>>"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
-#: mageia-cauldron
+#: mageia-cauldron opensuse-tumbleweed
msgid "B<pthread_once_t >I<once_control>B< = PTHREAD_ONCE_INIT;>"
msgstr "B<pthread_once_t >I<once_control>B< = PTHREAD_ONCE_INIT;>"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
-#: mageia-cauldron
+#: mageia-cauldron opensuse-tumbleweed
msgid ""
"B<int pthread_once(pthread_once_t *>I<once_control>B<, void "
"(*>I<init_routine>B<) (void));>"
@@ -86,19 +87,14 @@ msgstr ""
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
-#: mageia-cauldron
+#: mageia-cauldron opensuse-tumbleweed
#, no-wrap
msgid "DESCRIPTION"
msgstr "DESCRIPTION"
#. type: Plain text
-#: archlinux fedora-40 fedora-rawhide mageia-cauldron
-#, fuzzy
-#| msgid ""
-#| "The purpose of B<pthread_once> is to ensure that a piece of "
-#| "initialization code is executed at most once. The I<once_control> "
-#| "argument points to a static or extern variable statically initialized to "
-#| "B<PTHREAD_ONCE_INIT>."
+#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
+#: opensuse-tumbleweed
msgid ""
"The purpose of B<pthread_once> is to ensure that a piece of initialization "
"code is executed at most once. The I<once_control> argument points to a "
@@ -110,14 +106,8 @@ msgstr ""
"initialisée à B<PTHREAD_ONCE_INIT>."
#. type: Plain text
-#: archlinux fedora-40 fedora-rawhide mageia-cauldron
-#, fuzzy
-#| msgid ""
-#| "The first time B<pthread_once> is called with a given I<once_control> "
-#| "argument, it calls I<init_routine> with no argument and changes the value "
-#| "of the I<once_control> variable to record that initialization has been "
-#| "performed. Subsequent calls to B<pthread_once> with the same "
-#| "B<once_control> argument do nothing."
+#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
+#: opensuse-tumbleweed
msgid ""
"The first time B<pthread_once> is called with a given I<once_control> "
"argument, it calls I<init_routine> with no argument and changes the value of "
@@ -133,44 +123,44 @@ msgstr ""
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
-#: mageia-cauldron
+#: mageia-cauldron opensuse-tumbleweed
#, no-wrap
msgid "RETURN VALUE"
msgstr "VALEUR RENVOYÉE"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
-#: mageia-cauldron
+#: mageia-cauldron opensuse-tumbleweed
msgid "B<pthread_once> always returns 0."
msgstr "B<pthread_once>() renvoie toujours 0."
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
-#: mageia-cauldron
+#: mageia-cauldron opensuse-tumbleweed
#, no-wrap
msgid "ERRORS"
msgstr "ERREURS"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
-#: mageia-cauldron
+#: mageia-cauldron opensuse-tumbleweed
msgid "None."
msgstr "Aucun."
#. type: TH
-#: debian-bookworm debian-unstable
+#: debian-bookworm
#, no-wrap
msgid "PTHREAD_ONCE"
msgstr "PTHREAD_ONCE"
#. type: TH
-#: debian-bookworm debian-unstable
+#: debian-bookworm
#, no-wrap
msgid "LinuxThreads"
msgstr "LinuxThreads"
#. type: Plain text
-#: debian-bookworm debian-unstable
+#: debian-bookworm
msgid ""
"The purpose of B<pthread_once> is to ensure that a piece of initialization "
"code is executed at most once. The I<once_control> argument points to a "
@@ -182,7 +172,7 @@ msgstr ""
"initialisée à B<PTHREAD_ONCE_INIT>."
#. type: Plain text
-#: debian-bookworm debian-unstable
+#: debian-bookworm
msgid ""
"The first time B<pthread_once> is called with a given I<once_control> "
"argument, it calls I<init_routine> with no argument and changes the value of "
@@ -197,12 +187,36 @@ msgstr ""
"avec le même argument I<once_control> ne feront rien."
#. type: SH
-#: debian-bookworm debian-unstable
+#: debian-bookworm
#, no-wrap
msgid "AUTHOR"
msgstr "AUTEUR"
#. type: Plain text
-#: debian-bookworm debian-unstable
+#: debian-bookworm
msgid "Xavier Leroy E<lt>Xavier.Leroy@inria.frE<gt>"
msgstr "Xavier Leroy E<lt>Xavier.Leroy@inria.frE<gt>"
+
+#. type: TH
+#: 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 "Linux man-pages 6.06"
+msgstr "Pages du manuel de Linux 6.06"
+
+#. type: TH
+#: fedora-rawhide
+#, no-wrap
+msgid "Linux man-pages 6.7"
+msgstr "Pages du manuel de Linux 6.7"
+
+#. type: TH
+#: opensuse-tumbleweed
+#, no-wrap
+msgid "Linux man-pages (unreleased)"
+msgstr "Pages du manuel de Linux (non publiées)"