summaryrefslogtreecommitdiffstats
path: root/templates/man3/lockf.3.pot
diff options
context:
space:
mode:
Diffstat (limited to 'templates/man3/lockf.3.pot')
-rw-r--r--templates/man3/lockf.3.pot109
1 files changed, 79 insertions, 30 deletions
diff --git a/templates/man3/lockf.3.pot b/templates/man3/lockf.3.pot
index b982d5da..6a57c8af 100644
--- a/templates/man3/lockf.3.pot
+++ b/templates/man3/lockf.3.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2024-03-01 17:00+0100\n"
+"POT-Creation-Date: 2024-06-01 06:00+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -24,15 +24,15 @@ msgid "lockf"
msgstr ""
#. type: TH
-#: archlinux fedora-40 fedora-rawhide mageia-cauldron
+#: archlinux debian-unstable opensuse-tumbleweed
#, no-wrap
-msgid "2023-10-31"
+msgid "2024-05-02"
msgstr ""
#. type: TH
-#: archlinux fedora-40 fedora-rawhide mageia-cauldron
+#: archlinux debian-unstable
#, no-wrap
-msgid "Linux man-pages 6.06"
+msgid "Linux man-pages 6.8"
msgstr ""
#. type: SH
@@ -76,10 +76,9 @@ msgid "B<#include E<lt>unistd.hE<gt>>\n"
msgstr ""
#. type: Plain text
-#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
-#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+#: archlinux debian-unstable fedora-rawhide opensuse-tumbleweed
#, no-wrap
-msgid "B<int lockf(int >I<fd>B<, int >I<cmd>B<, off_t >I<len>B<);>\n"
+msgid "B<int lockf(int >I<fd>B<, int >I<op>B<, off_t >I<len>B<);>\n"
msgstr ""
#. type: Plain text
@@ -114,17 +113,16 @@ msgid "DESCRIPTION"
msgstr ""
#. type: Plain text
-#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
-#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+#: archlinux debian-unstable fedora-rawhide opensuse-tumbleweed
msgid ""
"Apply, test, or remove a POSIX lock on a section of an open file. The file "
"is specified by I<fd>, a file descriptor open for writing, the action by "
-"I<cmd>, and the section consists of byte positions I<pos>..I<pos>+I<len>-1 "
-"if I<len> is positive, and I<pos>-I<len>..I<pos>-1 if I<len> is negative, "
-"where I<pos> is the current file position, and if I<len> is zero, the "
-"section extends from the current file position to infinity, encompassing the "
-"present and future end-of-file positions. In all cases, the section may "
-"extend past current end-of-file."
+"I<op>, and the section consists of byte positions I<pos>..I<pos>+I<len>-1 if "
+"I<len> is positive, and I<pos>-I<len>..I<pos>-1 if I<len> is negative, where "
+"I<pos> is the current file position, and if I<len> is zero, the section "
+"extends from the current file position to infinity, encompassing the present "
+"and future end-of-file positions. In all cases, the section may extend past "
+"current end-of-file."
msgstr ""
#. type: Plain text
@@ -255,10 +253,9 @@ msgid "B<EBADF>"
msgstr ""
#. type: Plain text
-#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
-#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+#: archlinux debian-unstable fedora-rawhide opensuse-tumbleweed
msgid ""
-"I<fd> is not an open file descriptor; or I<cmd> is B<F_LOCK> or B<F_TLOCK> "
+"I<fd> is not an open file descriptor; or I<op> is B<F_LOCK> or B<F_TLOCK> "
"and I<fd> is not a writable file descriptor."
msgstr ""
@@ -270,10 +267,8 @@ msgid "B<EDEADLK>"
msgstr ""
#. type: Plain text
-#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
-#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
-msgid ""
-"The command was B<F_LOCK> and this lock operation would cause a deadlock."
+#: archlinux debian-unstable fedora-rawhide opensuse-tumbleweed
+msgid "I<op> was B<F_LOCK> and this lock operation would cause a deadlock."
msgstr ""
#. type: TP
@@ -299,9 +294,8 @@ msgid "B<EINVAL>"
msgstr ""
#. type: Plain text
-#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
-#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
-msgid "An invalid operation was specified in I<cmd>."
+#: archlinux debian-unstable fedora-rawhide opensuse-tumbleweed
+msgid "An invalid operation was specified in I<op>."
msgstr ""
#. type: TP
@@ -449,20 +443,69 @@ msgid "Linux man-pages 6.03"
msgstr ""
#. type: Plain text
+#: debian-bookworm fedora-40 mageia-cauldron opensuse-leap-15-6
+#, no-wrap
+msgid "B<int lockf(int >I<fd>B<, int >I<cmd>B<, off_t >I<len>B<);>\n"
+msgstr ""
+
+#. type: Plain text
+#: debian-bookworm fedora-40 mageia-cauldron opensuse-leap-15-6
+msgid ""
+"Apply, test, or remove a POSIX lock on a section of an open file. The file "
+"is specified by I<fd>, a file descriptor open for writing, the action by "
+"I<cmd>, and the section consists of byte positions I<pos>..I<pos>+I<len>-1 "
+"if I<len> is positive, and I<pos>-I<len>..I<pos>-1 if I<len> is negative, "
+"where I<pos> is the current file position, and if I<len> is zero, the "
+"section extends from the current file position to infinity, encompassing the "
+"present and future end-of-file positions. In all cases, the section may "
+"extend past current end-of-file."
+msgstr ""
+
+#. type: Plain text
+#: debian-bookworm fedora-40 mageia-cauldron opensuse-leap-15-6
+msgid ""
+"I<fd> is not an open file descriptor; or I<cmd> is B<F_LOCK> or B<F_TLOCK> "
+"and I<fd> is not a writable file descriptor."
+msgstr ""
+
+#. type: Plain text
+#: debian-bookworm fedora-40 mageia-cauldron opensuse-leap-15-6
+msgid ""
+"The command was B<F_LOCK> and this lock operation would cause a deadlock."
+msgstr ""
+
+#. type: Plain text
+#: debian-bookworm fedora-40 mageia-cauldron opensuse-leap-15-6
+msgid "An invalid operation was specified in I<cmd>."
+msgstr ""
+
+#. type: Plain text
#: debian-bookworm
msgid "POSIX.1-2001, POSIX.1-2008, SVr4."
msgstr ""
#. type: TH
-#: debian-unstable opensuse-tumbleweed
+#: fedora-40 mageia-cauldron
#, no-wrap
-msgid "2023-07-20"
+msgid "2023-10-31"
msgstr ""
#. type: TH
-#: debian-unstable opensuse-tumbleweed
+#: fedora-40 mageia-cauldron
#, no-wrap
-msgid "Linux man-pages 6.05.01"
+msgid "Linux man-pages 6.06"
+msgstr ""
+
+#. type: TH
+#: fedora-rawhide
+#, no-wrap
+msgid "2024-03-03"
+msgstr ""
+
+#. type: TH
+#: fedora-rawhide
+#, no-wrap
+msgid "Linux man-pages 6.7"
msgstr ""
#. type: TH
@@ -476,3 +519,9 @@ msgstr ""
#, no-wrap
msgid "Linux man-pages 6.04"
msgstr ""
+
+#. type: TH
+#: opensuse-tumbleweed
+#, no-wrap
+msgid "Linux man-pages (unreleased)"
+msgstr ""