summaryrefslogtreecommitdiffstats
path: root/templates/man3/libblkid.3.pot
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-15 19:43:11 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-15 19:43:11 +0000
commitfc22b3d6507c6745911b9dfcc68f1e665ae13dbc (patch)
treece1e3bce06471410239a6f41282e328770aa404a /templates/man3/libblkid.3.pot
parentInitial commit. (diff)
downloadmanpages-l10n-fc22b3d6507c6745911b9dfcc68f1e665ae13dbc.tar.xz
manpages-l10n-fc22b3d6507c6745911b9dfcc68f1e665ae13dbc.zip
Adding upstream version 4.22.0.upstream/4.22.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'templates/man3/libblkid.3.pot')
-rw-r--r--templates/man3/libblkid.3.pot237
1 files changed, 237 insertions, 0 deletions
diff --git a/templates/man3/libblkid.3.pot b/templates/man3/libblkid.3.pot
new file mode 100644
index 00000000..20af9b5b
--- /dev/null
+++ b/templates/man3/libblkid.3.pot
@@ -0,0 +1,237 @@
+# SOME DESCRIPTIVE TITLE
+# Copyright (C) YEAR Free Software Foundation, Inc.
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2024-02-09 17:01+0100\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"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. type: TH
+#: debian-bookworm opensuse-leap-15-6
+#, no-wrap
+msgid "LIBBLKID"
+msgstr ""
+
+#. type: TH
+#: debian-bookworm
+#, no-wrap
+msgid "2022-08-04"
+msgstr ""
+
+#. type: TH
+#: debian-bookworm
+#, no-wrap
+msgid "util-linux 2.38.1"
+msgstr ""
+
+#. type: TH
+#: debian-bookworm opensuse-leap-15-6
+#, no-wrap
+msgid "Programmer\\(aqs Manual"
+msgstr ""
+
+#. type: SH
+#: debian-bookworm opensuse-leap-15-6
+#, no-wrap
+msgid "NAME"
+msgstr ""
+
+#. type: Plain text
+#: debian-bookworm opensuse-leap-15-6
+msgid "libblkid - block device identification library"
+msgstr ""
+
+#. type: SH
+#: debian-bookworm opensuse-leap-15-6
+#, no-wrap
+msgid "SYNOPSIS"
+msgstr ""
+
+#. type: Plain text
+#: debian-bookworm opensuse-leap-15-6
+msgid "B<#include E<lt>blkid.hE<gt>>"
+msgstr ""
+
+#. type: Plain text
+#: debian-bookworm opensuse-leap-15-6
+msgid "B<cc> I<file.c> B<-lblkid>"
+msgstr ""
+
+#. type: SH
+#: debian-bookworm opensuse-leap-15-6
+#, no-wrap
+msgid "DESCRIPTION"
+msgstr ""
+
+#. type: Plain text
+#: debian-bookworm opensuse-leap-15-6
+msgid ""
+"The B<libblkid> library is used to identify block devices (disks) as to "
+"their content (e.g., filesystem type) as well as extracting additional "
+"information such as filesystem labels/volume names, unique identifiers/"
+"serial numbers. A common use is to allow use of B<LABEL=> and B<UUID=> tags "
+"instead of hard-coding specific block device names into configuration files."
+msgstr ""
+
+#. type: Plain text
+#: debian-bookworm opensuse-leap-15-6
+msgid ""
+"The low-level part of the library also allows the extraction of information "
+"about partitions and block device topology."
+msgstr ""
+
+#. type: Plain text
+#: debian-bookworm opensuse-leap-15-6
+msgid ""
+"The high-level part of the library keeps information about block devices in "
+"a cache file and is verified to still be valid before being returned to the "
+"user (if the user has read permission on the raw block device, otherwise "
+"not). The cache file also allows unprivileged users (normally anyone other "
+"than root, or those not in the \"disk\" group) to locate devices by label/"
+"id. The standard location of the cache file can be overridden by the "
+"environment variable B<BLKID_FILE>."
+msgstr ""
+
+#. type: Plain text
+#: debian-bookworm opensuse-leap-15-6
+msgid ""
+"In situations where one is getting information about a single known device, "
+"it does not impact performance whether the cache is used or not (unless you "
+"are not able to read the block device directly)."
+msgstr ""
+
+#. type: Plain text
+#: debian-bookworm
+msgid ""
+"The high-level part of the library supports two methods to determine B<LABEL/"
+"UUID>. It reads information directly from a block device or read information "
+"from /dev/disk/by-* udev symlinks. The udev is preferred method by default."
+msgstr ""
+
+#. type: Plain text
+#: debian-bookworm opensuse-leap-15-6
+msgid ""
+"If you are dealing with multiple devices, use of the cache is highly "
+"recommended (even if empty) as devices will be scanned at most one time and "
+"the on-disk cache will be updated if possible."
+msgstr ""
+
+#. type: Plain text
+#: debian-bookworm opensuse-leap-15-6
+msgid ""
+"In some cases (modular kernels), block devices are not even visible until "
+"after they are accessed the first time, so it is critical that there is some "
+"way to locate these devices without enumerating only visible devices, so the "
+"use of the cache file is B<required> in this situation."
+msgstr ""
+
+#. type: SH
+#: debian-bookworm opensuse-leap-15-6
+#, no-wrap
+msgid "CONFIGURATION FILE"
+msgstr ""
+
+#. type: Plain text
+#: debian-bookworm opensuse-leap-15-6
+msgid ""
+"The standard location of the I</etc/blkid.conf> config file can be "
+"overridden by the environment variable B<BLKID_CONF>. For more details about "
+"the config file see B<blkid>(8) man page."
+msgstr ""
+
+#. type: SH
+#: debian-bookworm opensuse-leap-15-6
+#, no-wrap
+msgid "AUTHORS"
+msgstr ""
+
+#. type: Plain text
+#: debian-bookworm opensuse-leap-15-6
+msgid ""
+"B<libblkid> was written by Andreas Dilger for the ext2 filesystem utilities, "
+"with input from Ted Ts\\(cqo. The library was subsequently heavily modified "
+"by Ted Ts\\(cqo."
+msgstr ""
+
+#. type: Plain text
+#: debian-bookworm opensuse-leap-15-6
+msgid "The low-level probing code was rewritten by Karel Zak."
+msgstr ""
+
+#. type: SH
+#: debian-bookworm opensuse-leap-15-6
+#, no-wrap
+msgid "COPYING"
+msgstr ""
+
+#. type: Plain text
+#: debian-bookworm opensuse-leap-15-6
+msgid ""
+"B<libblkid> is available under the terms of the GNU Library General Public "
+"License (LGPL), version 2 (or at your discretion any later version)."
+msgstr ""
+
+#. type: SH
+#: debian-bookworm opensuse-leap-15-6
+#, no-wrap
+msgid "SEE ALSO"
+msgstr ""
+
+#. type: Plain text
+#: debian-bookworm opensuse-leap-15-6
+msgid "B<blkid>(8), B<findfs>(8)"
+msgstr ""
+
+#. type: SH
+#: debian-bookworm opensuse-leap-15-6
+#, no-wrap
+msgid "REPORTING BUGS"
+msgstr ""
+
+#. type: Plain text
+#: debian-bookworm opensuse-leap-15-6
+msgid "For bug reports, use the issue tracker at"
+msgstr ""
+
+#. type: SH
+#: debian-bookworm opensuse-leap-15-6
+#, no-wrap
+msgid "AVAILABILITY"
+msgstr ""
+
+#. type: Plain text
+#: debian-bookworm opensuse-leap-15-6
+msgid ""
+"The B<libblkid> library is part of the util-linux package since version "
+"2.15. It can be downloaded from"
+msgstr ""
+
+#. type: TH
+#: opensuse-leap-15-6
+#, no-wrap
+msgid "2022-01-06"
+msgstr ""
+
+#. type: TH
+#: opensuse-leap-15-6
+#, no-wrap
+msgid "util-linux 2.37.4"
+msgstr ""
+
+#. type: Plain text
+#: opensuse-leap-15-6
+msgid ""
+"The high-level part of the library supports two methods to evaluate B<LABEL/"
+"UUID>. It reads information directly from a block device or read information "
+"from /dev/disk/by-* udev symlinks. The udev is preferred method by default."
+msgstr ""