Pull latest translations from Transifex.
[libguestfs.git] / po-docs / uk.po
index c3decbd..51491ae 100644 (file)
@@ -1,22 +1,21 @@
 # SOME DESCRIPTIVE TITLE
 # Copyright (C) YEAR Red Hat Inc.
 # This file is distributed under the same license as the libguestfs package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#
+# 
+# Yuri Chornoivan <yurchor@ukr.net>, 2011.
 msgid ""
 msgstr ""
 "Project-Id-Version: libguestfs\n"
-"Report-Msgid-Bugs-To: libguestfs@redhat.com\n"
+"Report-Msgid-Bugs-To: https://bugzilla.redhat.com/\n"
 "POT-Creation-Date: 2011-07-15 17:18+0200\n"
-"PO-Revision-Date: 2011-04-01 15:39+0000\n"
-"Last-Translator: yurchor <yurchor@ukr.net>\n"
+"PO-Revision-Date: 2011-07-17 20:50+0000\n"
+"Last-Translator: rjones <rjones@redhat.com>\n"
 "Language-Team: Ukrainian <trans-uk@lists.fedoraproject.org>\n"
-"Language: uk\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
+"Language: uk\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
 
 #. type: =head1
 #: ../src/guestfs.pod:3 ../fish/guestfish.pod:3
@@ -112,9 +111,9 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:33
 msgid ""
-"Libguestfs uses Linux kernel and qemu code, and can access any type of guest "
-"filesystem that Linux and qemu can, including but not limited to: ext2/3/4, "
-"btrfs, FAT and NTFS, LVM, many different disk partition schemes, qcow, "
+"Libguestfs uses Linux kernel and qemu code, and can access any type of guest"
+" filesystem that Linux and qemu can, including but not limited to: ext2/3/4,"
+" btrfs, FAT and NTFS, LVM, many different disk partition schemes, qcow, "
 "qcow2, vmdk."
 msgstr ""
 
@@ -130,9 +129,9 @@ msgstr ""
 #: ../src/guestfs.pod:43
 msgid ""
 "Libguestfs is a library that can be linked with C and C++ management "
-"programs (or management programs written in OCaml, Perl, Python, Ruby, Java, "
-"PHP, Haskell or C#).  You can also use it from shell scripts or the command "
-"line."
+"programs (or management programs written in OCaml, Perl, Python, Ruby, Java,"
+" PHP, Haskell or C#).  You can also use it from shell scripts or the command"
+" line."
 msgstr ""
 
 #. type: textblock
@@ -164,8 +163,8 @@ msgstr "ОГЛЯД API"
 #. type: textblock
 #: ../src/guestfs.pod:59
 msgid ""
-"This section provides a gentler overview of the libguestfs API.  We also try "
-"to group API calls together, where that may not be obvious from reading "
+"This section provides a gentler overview of the libguestfs API.  We also try"
+" to group API calls together, where that may not be obvious from reading "
 "about the individual calls in the main section of this manual."
 msgstr ""
 
@@ -180,13 +179,14 @@ msgid ""
 "Before you can use libguestfs calls, you have to create a handle.  Then you "
 "must add at least one disk image to the handle, followed by launching the "
 "handle, then performing whatever operations you want, and finally closing "
-"the handle.  By convention we use the single letter C<g> for the name of the "
-"handle variable, although of course you can use any name you want."
+"the handle.  By convention we use the single letter C<g> for the name of the"
+" handle variable, although of course you can use any name you want."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs.pod:73
-msgid "The general structure of all libguestfs-using programs looks like this:"
+msgid ""
+"The general structure of all libguestfs-using programs looks like this:"
 msgstr ""
 
 #. type: verbatim
@@ -232,6 +232,11 @@ msgid ""
 " char **logvols = guestfs_lvs (g);\n"
 " \n"
 msgstr ""
+" /* Тепер можна перевірити, які розділи, логічні томи тощо доступні.\n"
+"  */\n"
+" char **partitions = guestfs_list_partitions (g);\n"
+" char **logvols = guestfs_lvs (g);\n"
+" \n"
 
 #. type: verbatim
 #: ../src/guestfs.pod:94
@@ -249,13 +254,7 @@ msgstr ""
 
 #. type: verbatim
 #: ../src/guestfs.pod:98
-#, fuzzy, no-wrap
-#| msgid ""
-#| " /* Now you can perform filesystem actions on the guest\n"
-#| "  * disk image.\n"
-#| "  */\n"
-#| " guestfs_touch (g, \"/hello\");\n"
-#| "\n"
+#, no-wrap
 msgid ""
 " /* Now you can perform filesystem actions on the guest\n"
 "  * disk image.\n"
@@ -263,11 +262,6 @@ msgid ""
 " guestfs_touch (g, \"/hello\");\n"
 " \n"
 msgstr ""
-" /* Тепер ви можете виконувати дії з файловою системою на\n"
-"  * образі диска операційної системи.\n"
-"  */\n"
-" guestfs_touch (g, \"/hello\");\n"
-"\n"
 
 #. type: verbatim
 #: ../src/guestfs.pod:103
@@ -289,6 +283,9 @@ msgid ""
 " guestfs_close (g);\n"
 "\n"
 msgstr ""
+" /* Закрити дескриптор 'g'. */\n"
+" guestfs_close (g);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs.pod:112
@@ -305,23 +302,23 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs.pod:121
 msgid "DISK IMAGES"
-msgstr ""
+msgstr "ОБРАЗИ ДИСКІВ"
 
 #. type: textblock
 #: ../src/guestfs.pod:123
 msgid ""
 "The image filename (C<\"guest.img\"> in the example above) could be a disk "
 "image from a virtual machine, a L<dd(1)> copy of a physical hard disk, an "
-"actual block device, or simply an empty file of zeroes that you have created "
-"through L<posix_fallocate(3)>.  Libguestfs lets you do useful things to all "
-"of these."
+"actual block device, or simply an empty file of zeroes that you have created"
+" through L<posix_fallocate(3)>.  Libguestfs lets you do useful things to all"
+" of these."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs.pod:129
 msgid ""
-"The call you should use in modern code for adding drives is L</"
-"guestfs_add_drive_opts>.  To add a disk image, allowing writes, and "
+"The call you should use in modern code for adding drives is "
+"L</guestfs_add_drive_opts>.  To add a disk image, allowing writes, and "
 "specifying that the format is raw, do:"
 msgstr ""
 
@@ -334,11 +331,15 @@ msgid ""
 "                         -1);\n"
 "\n"
 msgstr ""
+" guestfs_add_drive_opts (g, filename,\n"
+"                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"raw\",\n"
+"                         -1);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs.pod:137
 msgid "You can add a disk read-only using:"
-msgstr ""
+msgstr "Ви можете додати диск у режимі лише читання:"
 
 #. type: verbatim
 #: ../src/guestfs.pod:139
@@ -350,6 +351,11 @@ msgid ""
 "                         -1);\n"
 "\n"
 msgstr ""
+" guestfs_add_drive_opts (g, filename,\n"
+"                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"raw\",\n"
+"                         GUESTFS_ADD_DRIVE_OPTS_READONLY, 1,\n"
+"                         -1);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs.pod:144
@@ -362,24 +368,24 @@ msgstr ""
 #: ../src/guestfs.pod:147
 msgid ""
 "Be extremely cautious if the disk image is in use, eg. if it is being used "
-"by a virtual machine.  Adding it read-write will almost certainly cause disk "
-"corruption, but adding it read-only is safe."
+"by a virtual machine.  Adding it read-write will almost certainly cause disk"
+" corruption, but adding it read-only is safe."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs.pod:151
 msgid ""
-"You must add at least one disk image, and you may add multiple disk images.  "
-"In the API, the disk images are usually referred to as C</dev/sda> (for the "
-"first one you added), C</dev/sdb> (for the second one you added), etc."
+"You must add at least one disk image, and you may add multiple disk images."
+"  In the API, the disk images are usually referred to as C</dev/sda> (for "
+"the first one you added), C</dev/sdb> (for the second one you added), etc."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs.pod:156
 msgid ""
-"Once L</guestfs_launch> has been called you cannot add any more images.  You "
-"can call L</guestfs_list_devices> to get a list of the device names, in the "
-"order that you added them.  See also L</BLOCK DEVICE NAMING> below."
+"Once L</guestfs_launch> has been called you cannot add any more images.  You"
+" can call L</guestfs_list_devices> to get a list of the device names, in the"
+" order that you added them.  See also L</BLOCK DEVICE NAMING> below."
 msgstr ""
 
 #. type: =head2
@@ -392,9 +398,9 @@ msgstr "МОНТУВАННЯ"
 msgid ""
 "Before you can read or write files, create directories and so on in a disk "
 "image that contains filesystems, you have to mount those filesystems using "
-"L</guestfs_mount_options> or L</guestfs_mount_ro>.  If you already know that "
-"a disk image contains (for example) one partition with a filesystem on that "
-"partition, then you can mount it directly:"
+"L</guestfs_mount_options> or L</guestfs_mount_ro>.  If you already know that"
+" a disk image contains (for example) one partition with a filesystem on that"
+" partition, then you can mount it directly:"
 msgstr ""
 
 #. type: verbatim
@@ -404,6 +410,8 @@ msgid ""
 " guestfs_mount_options (g, \"\", \"/dev/sda1\", \"/\");\n"
 "\n"
 msgstr ""
+" guestfs_mount_options (g, \"\", \"/dev/sda1\", \"/\");\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs.pod:172
@@ -419,19 +427,20 @@ msgstr ""
 #: ../src/guestfs.pod:178
 msgid ""
 "If you are given a disk image and you don't know what it contains then you "
-"have to find out.  Libguestfs can do that too: use L</"
-"guestfs_list_partitions> and L</guestfs_lvs> to list possible partitions and "
-"LVs, and either try mounting each to see what is mountable, or else examine "
-"them with L</guestfs_vfs_type> or L</guestfs_file>.  To list just "
+"have to find out.  Libguestfs can do that too: use "
+"L</guestfs_list_partitions> and L</guestfs_lvs> to list possible partitions "
+"and LVs, and either try mounting each to see what is mountable, or else "
+"examine them with L</guestfs_vfs_type> or L</guestfs_file>.  To list just "
 "filesystems, use L</guestfs_list_filesystems>."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs.pod:186
 msgid ""
-"Libguestfs also has a set of APIs for inspection of unknown disk images (see "
-"L</INSPECTION> below).  But you might find it easier to look at higher level "
-"programs built on top of libguestfs, in particular L<virt-inspector(1)>."
+"Libguestfs also has a set of APIs for inspection of unknown disk images (see"
+" L</INSPECTION> below).  But you might find it easier to look at higher "
+"level programs built on top of libguestfs, in particular L<virt-"
+"inspector(1)>."
 msgstr ""
 
 #. type: textblock
@@ -444,7 +453,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs.pod:194
 msgid "FILESYSTEM ACCESS AND MODIFICATION"
-msgstr ""
+msgstr "ДОСТУП ТА ВНЕСЕННЯ ЗМІН ДО ФАЙЛОВИХ СИСТЕМ"
 
 #. type: textblock
 #: ../src/guestfs.pod:196
@@ -462,6 +471,8 @@ msgid ""
 "Specify filenames as full paths, starting with C<\"/\"> and including the "
 "mount point."
 msgstr ""
+"Вказуйте адреси і назви файлів повністю, починаючи з C<\"/\">, разом з "
+"точкою монтування."
 
 #. type: textblock
 #: ../src/guestfs.pod:205
@@ -469,6 +480,9 @@ msgid ""
 "For example, if you mounted a filesystem at C<\"/\"> and you want to read "
 "the file called C<\"etc/passwd\"> then you could do:"
 msgstr ""
+"Наприклад, якщо вами змонтовано файлову систему до C<\"/\">, і ви бажаєте "
+"виконати читання файла з назвою C<\"etc/passwd\">, ви можете скористатися "
+"таким кодом:"
 
 #. type: verbatim
 #: ../src/guestfs.pod:208
@@ -477,13 +491,15 @@ msgid ""
 " char *data = guestfs_cat (g, \"/etc/passwd\");\n"
 "\n"
 msgstr ""
+" char *data = guestfs_cat (g, \"/etc/passwd\");\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs.pod:210
 msgid ""
 "This would return C<data> as a newly allocated buffer containing the full "
-"content of that file (with some conditions: see also L</DOWNLOADING> below), "
-"or C<NULL> if there was an error."
+"content of that file (with some conditions: see also L</DOWNLOADING> below),"
+" or C<NULL> if there was an error."
 msgstr ""
 
 #. type: textblock
@@ -500,11 +516,14 @@ msgid ""
 " guestfs_mkdir (g, \"/var\");\n"
 "\n"
 msgstr ""
+" guestfs_mkdir (g, \"/var\");\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs.pod:219
 msgid "To create a symlink you could do:"
 msgstr ""
+"Щоб створити символічне посилання, ви можете скористатися таким кодом:"
 
 #. type: verbatim
 #: ../src/guestfs.pod:221
@@ -514,6 +533,9 @@ msgid ""
 "               \"/etc/rc3.d/S30portmap\");\n"
 "\n"
 msgstr ""
+" guestfs_ln_s (g, \"/etc/init.d/portmap\",\n"
+"               \"/etc/rc3.d/S30portmap\");\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs.pod:224
@@ -535,8 +557,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:233
 msgid ""
-"File writes are affected by the per-handle umask, set by calling L</"
-"guestfs_umask> and defaulting to 022.  See L</UMASK>."
+"File writes are affected by the per-handle umask, set by calling "
+"L</guestfs_umask> and defaulting to 022.  See L</UMASK>."
 msgstr ""
 
 #. type: =head2
@@ -547,8 +569,8 @@ msgstr "ПОДІЛ НА РОЗДІЛИ"
 #. type: textblock
 #: ../src/guestfs.pod:238
 msgid ""
-"Libguestfs contains API calls to read, create and modify partition tables on "
-"disk images."
+"Libguestfs contains API calls to read, create and modify partition tables on"
+" disk images."
 msgstr ""
 
 #. type: textblock
@@ -568,11 +590,17 @@ msgid ""
 " guestfs_part_disk (g, \"/dev/sda\", parttype);\n"
 "\n"
 msgstr ""
+" const char *parttype = \"mbr\";\n"
+" if (disk_is_larger_than_2TB)\n"
+"   parttype = \"gpt\";\n"
+" guestfs_part_disk (g, \"/dev/sda\", parttype);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs.pod:250
 msgid ""
-"Obviously this effectively wipes anything that was on that disk image before."
+"Obviously this effectively wipes anything that was on that disk image "
+"before."
 msgstr ""
 
 #. type: =head2
@@ -583,30 +611,30 @@ msgstr "LVM2"
 #. type: textblock
 #: ../src/guestfs.pod:255
 msgid ""
-"Libguestfs provides access to a large part of the LVM2 API, such as L</"
-"guestfs_lvcreate> and L</guestfs_vgremove>.  It won't make much sense unless "
-"you familiarize yourself with the concepts of physical volumes, volume "
-"groups and logical volumes."
+"Libguestfs provides access to a large part of the LVM2 API, such as "
+"L</guestfs_lvcreate> and L</guestfs_vgremove>.  It won't make much sense "
+"unless you familiarize yourself with the concepts of physical volumes, "
+"volume groups and logical volumes."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs.pod:260
 msgid ""
-"This author strongly recommends reading the LVM HOWTO, online at L<http://"
-"tldp.org/HOWTO/LVM-HOWTO/>."
+"This author strongly recommends reading the LVM HOWTO, online at "
+"L<http://tldp.org/HOWTO/LVM-HOWTO/>."
 msgstr ""
 
 #. type: =head2
 #: ../src/guestfs.pod:263
 msgid "DOWNLOADING"
-msgstr ""
+msgstr "ОТРИМАННЯ ДАНИХ"
 
 #. type: textblock
 #: ../src/guestfs.pod:265
 msgid ""
 "Use L</guestfs_cat> to download small, text only files.  This call is "
-"limited to files which are less than 2 MB and which cannot contain any ASCII "
-"NUL (C<\\0>) characters.  However the API is very simple to use."
+"limited to files which are less than 2 MB and which cannot contain any ASCII"
+" NUL (C<\\0>) characters.  However the API is very simple to use."
 msgstr ""
 
 #. type: textblock
@@ -638,24 +666,25 @@ msgstr "ВИВАНТАЖЕННЯ"
 #. type: textblock
 #: ../src/guestfs.pod:281
 msgid ""
-"It's often the case that you want to write a file or files to the disk image."
+"It's often the case that you want to write a file or files to the disk "
+"image."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs.pod:284
 msgid ""
 "To write a small file with fixed content, use L</guestfs_write>.  To create "
-"a file of all zeroes, use L</guestfs_truncate_size> (sparse) or L</"
-"guestfs_fallocate64> (with all disk blocks allocated).  There are a variety "
-"of other functions for creating test files, for example L</guestfs_fill> and "
-"L</guestfs_fill_pattern>."
+"a file of all zeroes, use L</guestfs_truncate_size> (sparse) or "
+"L</guestfs_fallocate64> (with all disk blocks allocated).  There are a "
+"variety of other functions for creating test files, for example "
+"L</guestfs_fill> and L</guestfs_fill_pattern>."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs.pod:290
 msgid ""
-"To upload a single file, use L</guestfs_upload>.  This call has no limits on "
-"file content or size (even files larger than 4 GB)."
+"To upload a single file, use L</guestfs_upload>.  This call has no limits on"
+" file content or size (even files larger than 4 GB)."
 msgstr ""
 
 #. type: textblock
@@ -668,14 +697,14 @@ msgstr ""
 #: ../src/guestfs.pod:295
 msgid ""
 "However the fastest way to upload I<large numbers of arbitrary files> is to "
-"turn them into a squashfs or CD ISO (see L<mksquashfs(8)> and L<mkisofs(8)"
-">), then attach this using L</guestfs_add_drive_ro>.  If you add the drive "
-"in a predictable way (eg. adding it last after all other drives) then you "
-"can get the device name from L</guestfs_list_devices> and mount it directly "
-"using L</guestfs_mount_ro>.  Note that squashfs images are sometimes non-"
-"portable between kernel versions, and they don't support labels or UUIDs.  "
-"If you want to pre-build an image or you need to mount it using a label or "
-"UUID, use an ISO image instead."
+"turn them into a squashfs or CD ISO (see L<mksquashfs(8)> and "
+"L<mkisofs(8)>), then attach this using L</guestfs_add_drive_ro>.  If you add"
+" the drive in a predictable way (eg. adding it last after all other drives) "
+"then you can get the device name from L</guestfs_list_devices> and mount it "
+"directly using L</guestfs_mount_ro>.  Note that squashfs images are "
+"sometimes non-portable between kernel versions, and they don't support "
+"labels or UUIDs.  If you want to pre-build an image or you need to mount it "
+"using a label or UUID, use an ISO image instead."
 msgstr ""
 
 #. type: =head2
@@ -694,7 +723,7 @@ msgstr ""
 #. type: =item
 #: ../src/guestfs.pod:314
 msgid "B<file> to B<file>"
-msgstr ""
+msgstr "B<файл> у B<файл>"
 
 #. type: textblock
 #: ../src/guestfs.pod:316
@@ -706,13 +735,13 @@ msgstr ""
 #. type: =item
 #: ../src/guestfs.pod:319
 msgid "B<file or device> to B<file or device>"
-msgstr ""
+msgstr "B<файл або пристрій> у B<файл або пристрій>"
 
 #. type: textblock
 #: ../src/guestfs.pod:321
 msgid ""
-"Use L</guestfs_dd> which efficiently uses L<dd(1)> to copy between files and "
-"devices in the guest."
+"Use L</guestfs_dd> which efficiently uses L<dd(1)> to copy between files and"
+" devices in the guest."
 msgstr ""
 
 #. type: textblock
@@ -727,13 +756,15 @@ msgid ""
 " guestfs_dd (g, \"/dev/VG/Original\", \"/dev/VG/Copy\");\n"
 "\n"
 msgstr ""
+" guestfs_dd (g, \"/dev/VG/Original\", \"/dev/VG/Copy\");\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs.pod:328
 msgid ""
 "The destination (C</dev/VG/Copy>) must be at least as large as the source "
-"(C</dev/VG/Original>).  To copy less than the whole source device, use L</"
-"guestfs_copy_size>."
+"(C</dev/VG/Original>).  To copy less than the whole source device, use "
+"L</guestfs_copy_size>."
 msgstr ""
 
 #. type: =item
@@ -764,12 +795,12 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:344
 msgid ""
-"Calls like L</guestfs_upload>, L</guestfs_download>, L</guestfs_tar_in>, L</"
-"guestfs_tar_out> etc appear to only take filenames as arguments, so it "
+"Calls like L</guestfs_upload>, L</guestfs_download>, L</guestfs_tar_in>, "
+"L</guestfs_tar_out> etc appear to only take filenames as arguments, so it "
 "appears you can only upload and download to files.  However many Un*x-like "
-"hosts let you use the special device files C</dev/stdin>, C</dev/stdout>, C</"
-"dev/stderr> and C</dev/fd/N> to read and write from stdin, stdout, stderr, "
-"and arbitrary file descriptor N."
+"hosts let you use the special device files C</dev/stdin>, C</dev/stdout>, "
+"C</dev/stderr> and C</dev/fd/N> to read and write from stdin, stdout, "
+"stderr, and arbitrary file descriptor N."
 msgstr ""
 
 #. type: textblock
@@ -784,6 +815,8 @@ msgid ""
 " guestfs_download (g, filename, \"/dev/stdout\");\n"
 "\n"
 msgstr ""
+" guestfs_download (g, filename, \"/dev/stdout\");\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs.pod:357
@@ -799,11 +832,15 @@ msgid ""
 " guestfs_tar_out (g, \"/\", devfd);\n"
 "\n"
 msgstr ""
+" char devfd[64];\n"
+" snprintf (devfd, sizeof devfd, \"/dev/fd/%d\", fd);\n"
+" guestfs_tar_out (g, \"/\", devfd);\n"
+"\n"
 
 #. type: =head2
 #: ../src/guestfs.pod:363
 msgid "LISTING FILES"
-msgstr ""
+msgstr "СПИСКИ ФАЙЛІВ"
 
 #. type: textblock
 #: ../src/guestfs.pod:365
@@ -830,13 +867,14 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:375
 msgid ""
-"L</guestfs_find> and L</guestfs_find0> can be used to recursively list files."
+"L</guestfs_find> and L</guestfs_find0> can be used to recursively list "
+"files."
 msgstr ""
 
 #. type: =head2
 #: ../src/guestfs.pod:378
 msgid "RUNNING COMMANDS"
-msgstr ""
+msgstr "ВИКОНАННЯ КОМАНД"
 
 #. type: textblock
 #: ../src/guestfs.pod:380
@@ -900,7 +938,7 @@ msgstr ""
 #: ../tools/virt-win-reg.pl:708 ../tools/virt-win-reg.pl:714
 #: ../tools/virt-win-reg.pl:720
 msgid "*"
-msgstr ""
+msgstr "*"
 
 #. type: textblock
 #: ../src/guestfs.pod:390
@@ -924,8 +962,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:404
 msgid ""
-"The network may not be available unless you enable it (see L</"
-"guestfs_set_network>)."
+"The network may not be available unless you enable it (see "
+"L</guestfs_set_network>)."
 msgstr ""
 
 #. type: textblock
@@ -963,16 +1001,16 @@ msgstr ""
 msgid ""
 "A secure alternative is to use libguestfs to install a \"firstboot\" script "
 "(a script which runs when the guest next boots normally), and to have this "
-"script run the commands you want in the normal context of the running guest, "
-"network security and so on.  For information about other security issues, "
+"script run the commands you want in the normal context of the running guest,"
+" network security and so on.  For information about other security issues, "
 "see L</SECURITY>."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs.pod:440
 msgid ""
-"The two main API calls to run commands are L</guestfs_command> and L</"
-"guestfs_sh> (there are also variations)."
+"The two main API calls to run commands are L</guestfs_command> and "
+"L</guestfs_sh> (there are also variations)."
 msgstr ""
 
 #. type: textblock
@@ -999,17 +1037,17 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:453
 msgid ""
-"The main Augeas calls are bound through the C<guestfs_aug_*> APIs.  We don't "
-"document Augeas itself here because there is excellent documentation on the "
-"L<http://augeas.net/> website."
+"The main Augeas calls are bound through the C<guestfs_aug_*> APIs.  We don't"
+" document Augeas itself here because there is excellent documentation on the"
+" L<http://augeas.net/> website."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs.pod:457
 msgid ""
-"If you don't want to use Augeas (you fool!) then try calling L</"
-"guestfs_read_lines> to get the file as a list of lines which you can iterate "
-"over."
+"If you don't want to use Augeas (you fool!) then try calling "
+"L</guestfs_read_lines> to get the file as a list of lines which you can "
+"iterate over."
 msgstr ""
 
 #. type: =head2
@@ -1028,7 +1066,7 @@ msgstr ""
 #: ../src/guestfs.pod:469 ../src/guestfs.pod:1257 ../src/guestfs.pod:1395
 #: ../src/guestfs.pod:2465
 msgid "1."
-msgstr ""
+msgstr "1."
 
 #. type: textblock
 #: ../src/guestfs.pod:471
@@ -1042,12 +1080,14 @@ msgid ""
 " guestfs_set_selinux (g, 1);\n"
 "\n"
 msgstr ""
+" guestfs_set_selinux (g, 1);\n"
+"\n"
 
 #. type: =item
 #: ../src/guestfs.pod:475 ../src/guestfs.pod:1261 ../src/guestfs.pod:1399
 #: ../src/guestfs.pod:2490
 msgid "2."
-msgstr ""
+msgstr "2."
 
 #. type: textblock
 #: ../src/guestfs.pod:477
@@ -1063,6 +1103,8 @@ msgid ""
 " guestfs_sh (g, \"/usr/sbin/load_policy\");\n"
 "\n"
 msgstr ""
+" guestfs_sh (g, \"/usr/sbin/load_policy\");\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs.pod:483
@@ -1074,7 +1116,7 @@ msgstr ""
 #. type: =item
 #: ../src/guestfs.pod:486 ../src/guestfs.pod:1405
 msgid "3."
-msgstr ""
+msgstr "3."
 
 #. type: textblock
 #: ../src/guestfs.pod:488
@@ -1090,6 +1132,8 @@ msgid ""
 " guestfs_setcon (g, \"unconfined_u:unconfined_r:unconfined_t:s0\");\n"
 "\n"
 msgstr ""
+" guestfs_setcon (g, \"unconfined_u:unconfined_r:unconfined_t:s0\");\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs.pod:496
@@ -1106,7 +1150,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs.pod:502
 msgid "UMASK"
-msgstr ""
+msgstr "UMASK"
 
 #. type: textblock
 #: ../src/guestfs.pod:504
@@ -1121,16 +1165,16 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:510
 msgid ""
-"The default umask is C<022>, so files are created with modes such as C<0644> "
-"and directories with C<0755>."
+"The default umask is C<022>, so files are created with modes such as C<0644>"
+" and directories with C<0755>."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs.pod:513
 msgid ""
 "There are two ways to avoid being affected by umask.  Either set umask to 0 "
-"(call C<guestfs_umask (g, 0)> early after launching).  Or call L</"
-"guestfs_chmod> after creating each file or directory."
+"(call C<guestfs_umask (g, 0)> early after launching).  Or call "
+"L</guestfs_chmod> after creating each file or directory."
 msgstr ""
 
 #. type: textblock
@@ -1141,13 +1185,13 @@ msgstr ""
 #. type: =head1
 #: ../src/guestfs.pod:519 ../fish/guestfish.pod:825
 msgid "ENCRYPTED DISKS"
-msgstr ""
+msgstr "ЗАШИФРОВАНІ ДИСКИ"
 
 #. type: textblock
 #: ../src/guestfs.pod:521
 msgid ""
-"Libguestfs allows you to access Linux guests which have been encrypted using "
-"whole disk encryption that conforms to the Linux Unified Key Setup (LUKS) "
+"Libguestfs allows you to access Linux guests which have been encrypted using"
+" whole disk encryption that conforms to the Linux Unified Key Setup (LUKS) "
 "standard.  This includes nearly all whole disk encryption systems used by "
 "modern Linux guests."
 msgstr ""
@@ -1169,27 +1213,27 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:533
 msgid ""
-"Opening a LUKS device creates a new device mapper device called C</dev/"
-"mapper/mapname> (where C<mapname> is the string you supply to L</"
-"guestfs_luks_open>).  Reads and writes to this mapper device are decrypted "
-"from and encrypted to the underlying block device respectively."
+"Opening a LUKS device creates a new device mapper device called "
+"C</dev/mapper/mapname> (where C<mapname> is the string you supply to "
+"L</guestfs_luks_open>).  Reads and writes to this mapper device are "
+"decrypted from and encrypted to the underlying block device respectively."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs.pod:539
 msgid ""
-"LVM volume groups on the device can be made visible by calling L</"
-"guestfs_vgscan> followed by L</guestfs_vg_activate_all>.  The logical volume"
-"(s) can now be mounted in the usual way."
+"LVM volume groups on the device can be made visible by calling "
+"L</guestfs_vgscan> followed by L</guestfs_vg_activate_all>.  The logical "
+"volume(s) can now be mounted in the usual way."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs.pod:543
 msgid ""
-"Use the reverse process to close a LUKS device.  Unmount any logical volumes "
-"on it, deactivate the volume groups by caling C<guestfs_vg_activate (g, 0, "
-"[\"/dev/VG\"])>.  Then close the mapper device by calling L</"
-"guestfs_luks_close> on the C</dev/mapper/mapname> device (I<not> the "
+"Use the reverse process to close a LUKS device.  Unmount any logical volumes"
+" on it, deactivate the volume groups by caling C<guestfs_vg_activate (g, 0, "
+"[\"/dev/VG\"])>.  Then close the mapper device by calling "
+"L</guestfs_luks_close> on the C</dev/mapper/mapname> device (I<not> the "
 "underlying encrypted block device)."
 msgstr ""
 
@@ -1202,24 +1246,24 @@ msgstr "ПЕРЕВІРКА"
 #: ../src/guestfs.pod:552
 msgid ""
 "Libguestfs has APIs for inspecting an unknown disk image to find out if it "
-"contains operating systems, an install CD or a live CD.  (These APIs used to "
-"be in a separate Perl-only library called L<Sys::Guestfs::Lib(3)> but since "
-"version 1.5.3 the most frequently used part of this library has been "
+"contains operating systems, an install CD or a live CD.  (These APIs used to"
+" be in a separate Perl-only library called L<Sys::Guestfs::Lib(3)> but since"
+" version 1.5.3 the most frequently used part of this library has been "
 "rewritten in C and moved into the core code)."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs.pod:559
 msgid ""
-"Add all disks belonging to the unknown virtual machine and call L</"
-"guestfs_launch> in the usual way."
+"Add all disks belonging to the unknown virtual machine and call "
+"L</guestfs_launch> in the usual way."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs.pod:562
 msgid ""
-"Then call L</guestfs_inspect_os>.  This function uses other libguestfs calls "
-"and certain heuristics, and returns a list of operating systems that were "
+"Then call L</guestfs_inspect_os>.  This function uses other libguestfs calls"
+" and certain heuristics, and returns a list of operating systems that were "
 "found.  An empty list means none were found.  A single element is the root "
 "filesystem of the operating system.  For dual- or multi-boot guests, "
 "multiple roots can be returned, each one corresponding to a separate "
@@ -1232,9 +1276,9 @@ msgstr ""
 #: ../src/guestfs.pod:571
 msgid ""
 "For each root, you can then call various C<guestfs_inspect_get_*> functions "
-"to get additional details about that operating system.  For example, call L</"
-"guestfs_inspect_get_type> to return the string C<windows> or C<linux> for "
-"Windows and Linux-based operating systems respectively."
+"to get additional details about that operating system.  For example, call "
+"L</guestfs_inspect_get_type> to return the string C<windows> or C<linux> for"
+" Windows and Linux-based operating systems respectively."
 msgstr ""
 
 #. type: textblock
@@ -1242,8 +1286,8 @@ msgstr ""
 msgid ""
 "Un*x-like and Linux-based operating systems usually consist of several "
 "filesystems which are mounted at boot time (for example, a separate boot "
-"partition mounted on C</boot>).  The inspection rules are able to detect how "
-"filesystems correspond to mount points.  Call "
+"partition mounted on C</boot>).  The inspection rules are able to detect how"
+" filesystems correspond to mount points.  Call "
 "C<guestfs_inspect_get_mountpoints> to get this mapping.  It might return a "
 "hash table like this example:"
 msgstr ""
@@ -1257,6 +1301,10 @@ msgid ""
 " /usr  => /dev/vg_guest/lv_usr\n"
 "\n"
 msgstr ""
+" /boot => /dev/sda1\n"
+" /     => /dev/vg_guest/lv_root\n"
+" /usr  => /dev/vg_guest/lv_usr\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs.pod:588
@@ -1268,16 +1316,17 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:591
 msgid ""
-"Be careful to mount filesystems in the right order (eg. C</> before C</"
-"usr>).  Sorting the keys of the hash by length, shortest first, should work."
+"Be careful to mount filesystems in the right order (eg. C</> before "
+"C</usr>).  Sorting the keys of the hash by length, shortest first, should "
+"work."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs.pod:595
 msgid ""
 "Inspection currently only works for some common operating systems.  "
-"Contributors are welcome to send patches for other operating systems that we "
-"currently cannot detect."
+"Contributors are welcome to send patches for other operating systems that we"
+" currently cannot detect."
 msgstr ""
 
 #. type: textblock
@@ -1295,10 +1344,10 @@ msgid ""
 "inspection and caches the results in the guest handle.  Subsequent calls to "
 "C<guestfs_inspect_get_*> return this cached information, but I<do not> re-"
 "read the disks.  If you change the content of the guest disks, you can redo "
-"inspection by calling L</guestfs_inspect_os> again.  (L</"
-"guestfs_inspect_list_applications> works a little differently from the other "
-"calls and does read the disks.  See documentation for that function for "
-"details)."
+"inspection by calling L</guestfs_inspect_os> again.  "
+"(L</guestfs_inspect_list_applications> works a little differently from the "
+"other calls and does read the disks.  See documentation for that function "
+"for details)."
 msgstr ""
 
 #. type: =head3
@@ -1325,16 +1374,17 @@ msgstr ""
 #: ../src/guestfs.pod:621
 msgid ""
 "Further information is available about the operating system that can be "
-"installed using the regular inspection APIs like L</"
-"guestfs_inspect_get_product_name>, L</guestfs_inspect_get_major_version> etc."
+"installed using the regular inspection APIs like "
+"L</guestfs_inspect_get_product_name>, L</guestfs_inspect_get_major_version> "
+"etc."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs.pod:626
 msgid ""
 "Some additional information specific to installer disks is also available "
-"from the L</guestfs_inspect_is_live>, L</guestfs_inspect_is_netinst> and L</"
-"guestfs_inspect_is_multipart> calls."
+"from the L</guestfs_inspect_is_live>, L</guestfs_inspect_is_netinst> and "
+"L</guestfs_inspect_is_multipart> calls."
 msgstr ""
 
 #. type: =head2
@@ -1345,23 +1395,23 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:633
 msgid ""
-"Libguestfs can mount NTFS partitions.  It does this using the L<http://www."
-"ntfs-3g.org/> driver."
+"Libguestfs can mount NTFS partitions.  It does this using the L<http://www"
+".ntfs-3g.org/> driver."
 msgstr ""
 
 #. type: =head3
 #: ../src/guestfs.pod:636
 msgid "DRIVE LETTERS AND PATHS"
-msgstr ""
+msgstr "ЛІТЕРИ ДИСКІВ ТА ШЛЯХИ"
 
 #. type: textblock
 #: ../src/guestfs.pod:638
 msgid ""
 "DOS and Windows still use drive letters, and the filesystems are always "
 "treated as case insensitive by Windows itself, and therefore you might find "
-"a Windows configuration file referring to a path like C<c:\\windows"
-"\\system32>.  When the filesystem is mounted in libguestfs, that directory "
-"might be referred to as C</WINDOWS/System32>."
+"a Windows configuration file referring to a path like "
+"C<c:\\windows\\system32>.  When the filesystem is mounted in libguestfs, "
+"that directory might be referred to as C</WINDOWS/System32>."
 msgstr ""
 
 #. type: textblock
@@ -1382,14 +1432,14 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:651
 msgid ""
-"To resolve the case insensitivity of paths, call L</"
-"guestfs_case_sensitive_path>."
+"To resolve the case insensitivity of paths, call "
+"L</guestfs_case_sensitive_path>."
 msgstr ""
 
 #. type: =head3
 #: ../src/guestfs.pod:654
 msgid "ACCESSING THE WINDOWS REGISTRY"
-msgstr ""
+msgstr "ДОСТУП ДО РЕГІСТРУ WINDOWS"
 
 #. type: textblock
 #: ../src/guestfs.pod:656
@@ -1398,14 +1448,14 @@ msgid ""
 "files, through the library C<hivex> which is part of the libguestfs project "
 "although ships as a separate tarball.  You have to locate and download the "
 "hive file(s) yourself, and then pass them to C<hivex> functions.  See also "
-"the programs L<hivexml(1)>, L<hivexsh(1)>, L<hivexregedit(1)> and L<virt-win-"
-"reg(1)> for more help on this issue."
+"the programs L<hivexml(1)>, L<hivexsh(1)>, L<hivexregedit(1)> and L<virt-"
+"win-reg(1)> for more help on this issue."
 msgstr ""
 
 #. type: =head3
 #: ../src/guestfs.pod:664
 msgid "SYMLINKS ON NTFS-3G FILESYSTEMS"
-msgstr ""
+msgstr "СИМВОЛІЧНІ ПОСИЛАННЯ У ФАЙЛОВИХ СИСТЕМАХ NTFS-3G"
 
 #. type: textblock
 #: ../src/guestfs.pod:666
@@ -1437,8 +1487,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:679
 msgid ""
-"Instead if you encounter a symbolic link on an ntfs-3g filesystem, use L</"
-"guestfs_lgetxattr> to read the C<system.ntfs_reparse_data> extended "
+"Instead if you encounter a symbolic link on an ntfs-3g filesystem, use "
+"L</guestfs_lgetxattr> to read the C<system.ntfs_reparse_data> extended "
 "attribute, and read the raw reparse data from that (you can find the format "
 "documented in various places around the web)."
 msgstr ""
@@ -1465,7 +1515,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs.pod:691
 msgid "USING LIBGUESTFS WITH OTHER PROGRAMMING LANGUAGES"
-msgstr ""
+msgstr "ВИКОРИСТАННЯ LIBGUESTFS ЗА ДОПОМОГОЮ ІНШИХ МОВ ПРОГРАМУВАННЯ"
 
 #. type: textblock
 #: ../src/guestfs.pod:693
@@ -1478,8 +1528,8 @@ msgstr ""
 #: ../src/guestfs.pod:696
 msgid ""
 "The API is broadly identical in all supported languages.  This means that "
-"the C call C<guestfs_add_drive_ro(g,file)> is C<$g-E<gt>add_drive_ro($file)> "
-"in Perl, C<g.add_drive_ro(file)> in Python, and C<g#add_drive_ro file> in "
+"the C call C<guestfs_add_drive_ro(g,file)> is C<$g-E<gt>add_drive_ro($file)>"
+" in Perl, C<g.add_drive_ro(file)> in Python, and C<g#add_drive_ro file> in "
 "OCaml.  In other words, a straightforward, predictable isomorphism between "
 "each language."
 msgstr ""
@@ -1487,8 +1537,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:702
 msgid ""
-"Error messages are automatically transformed into exceptions if the language "
-"supports it."
+"Error messages are automatically transformed into exceptions if the language"
+" supports it."
 msgstr ""
 
 #. type: textblock
@@ -1633,8 +1683,8 @@ msgstr ""
 msgid ""
 "Since we developed libguestfs and the associated tools, there are several "
 "things we would have designed differently, but are now stuck with for "
-"backwards compatibility or other reasons.  If there is ever a libguestfs 2.0 "
-"release, you can expect these to change.  Beware of them."
+"backwards compatibility or other reasons.  If there is ever a libguestfs 2.0"
+" release, you can expect these to change.  Beware of them."
 msgstr ""
 
 #. type: =item
@@ -1664,12 +1714,15 @@ msgid ""
 " guestfs_set_autosync (g, 1);\n"
 "\n"
 msgstr ""
+" guestfs_set_autosync (g, 1);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs.pod:787
 msgid ""
 "to have the unmount/sync done automatically for you when the handle 'g' is "
-"closed.  (This feature is called \"autosync\", L</guestfs_set_autosync> q.v.)"
+"closed.  (This feature is called \"autosync\", L</guestfs_set_autosync> "
+"q.v.)"
 msgstr ""
 
 #. type: textblock
@@ -1696,8 +1749,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:801
 msgid ""
-"If you use L</guestfs_mount>, then C<-o sync,noatime> are added implicitly.  "
-"However C<-o sync> does not add any reliability benefit, but does have a "
+"If you use L</guestfs_mount>, then C<-o sync,noatime> are added implicitly."
+"  However C<-o sync> does not add any reliability benefit, but does have a "
 "very large performance impact."
 msgstr ""
 
@@ -1729,8 +1782,8 @@ msgstr ""
 #: ../src/guestfs.pod:815
 msgid ""
 "Note that many filesystems change the disk when you just mount and unmount, "
-"even if you didn't perform any writes.  You need to use L</"
-"guestfs_add_drive_ro> to guarantee that the disk is not changed."
+"even if you didn't perform any writes.  You need to use "
+"L</guestfs_add_drive_ro> to guarantee that the disk is not changed."
 msgstr ""
 
 #. type: =item
@@ -1742,10 +1795,10 @@ msgstr ""
 #: ../src/guestfs.pod:821
 msgid ""
 "C<guestfish disk.img> doesn't do what people expect (open C<disk.img> for "
-"examination).  It tries to run a guestfish command C<disk.img> which doesn't "
-"exist, so it fails.  In earlier versions of guestfish the error message was "
-"also unintuitive, but we have corrected this since.  Like the Bourne shell, "
-"we should have used C<guestfish -c command> to run commands."
+"examination).  It tries to run a guestfish command C<disk.img> which doesn't"
+" exist, so it fails.  In earlier versions of guestfish the error message was"
+" also unintuitive, but we have corrected this since.  Like the Bourne shell,"
+" we should have used C<guestfish -c command> to run commands."
 msgstr ""
 
 #. type: =item
@@ -1775,6 +1828,8 @@ msgid ""
 " lvcreate LV VG 100M\n"
 "\n"
 msgstr ""
+" lvcreate LV VG 100M\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs.pod:841
@@ -1800,9 +1855,9 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:851
 msgid ""
-"There is a subtle ambiguity in the API between a device name (eg. C</dev/"
-"sdb2>) and a similar pathname.  A file might just happen to be called "
-"C<sdb2> in the directory C</dev> (consider some non-Unix VM image)."
+"There is a subtle ambiguity in the API between a device name (eg. "
+"C</dev/sdb2>) and a similar pathname.  A file might just happen to be called"
+" C<sdb2> in the directory C</dev> (consider some non-Unix VM image)."
 msgstr ""
 
 #. type: textblock
@@ -1858,7 +1913,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs.pod:882
 msgid "KEYS AND PASSPHRASES"
-msgstr ""
+msgstr "КЛЮЧІ І ПАРОЛІ"
 
 #. type: textblock
 #: ../src/guestfs.pod:884
@@ -1880,8 +1935,8 @@ msgstr ""
 #: ../src/guestfs.pod:892
 msgid ""
 "Therefore you should be aware that any key parameter you pass to libguestfs "
-"might end up being written out to the swap partition.  If this is a concern, "
-"scrub the swap partition or don't use libguestfs on encrypted devices."
+"might end up being written out to the swap partition.  If this is a concern,"
+" scrub the swap partition or don't use libguestfs on encrypted devices."
 msgstr ""
 
 #. type: =head2
@@ -1899,9 +1954,9 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:902
 msgid ""
-"Only use the handle from a single thread.  Either use the handle exclusively "
-"from one thread, or provide your own mutex so that two threads cannot issue "
-"calls on the same handle at the same time."
+"Only use the handle from a single thread.  Either use the handle exclusively"
+" from one thread, or provide your own mutex so that two threads cannot issue"
+" calls on the same handle at the same time."
 msgstr ""
 
 #. type: textblock
@@ -1926,15 +1981,15 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:914
 msgid ""
-"By default it looks for these in the directory C<$libdir/guestfs> (eg. C</"
-"usr/local/lib/guestfs> or C</usr/lib64/guestfs>)."
+"By default it looks for these in the directory C<$libdir/guestfs> (eg. "
+"C</usr/local/lib/guestfs> or C</usr/lib64/guestfs>)."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs.pod:917
 msgid ""
-"Use L</guestfs_set_path> or set the environment variable L</LIBGUESTFS_PATH> "
-"to change the directories that libguestfs will search in.  The value is a "
+"Use L</guestfs_set_path> or set the environment variable L</LIBGUESTFS_PATH>"
+" to change the directories that libguestfs will search in.  The value is a "
 "colon-separated list of paths.  The current directory is I<not> searched "
 "unless the path contains an empty element or C<.>.  For example "
 "C<LIBGUESTFS_PATH=:/usr/lib/guestfs> would search the current directory and "
@@ -1949,8 +2004,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:926
 msgid ""
-"If you want to compile your own qemu, run qemu from a non-standard location, "
-"or pass extra arguments to qemu, then you can write a shell-script wrapper "
+"If you want to compile your own qemu, run qemu from a non-standard location,"
+" or pass extra arguments to qemu, then you can write a shell-script wrapper "
 "around qemu."
 msgstr ""
 
@@ -1966,8 +2021,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:935
 msgid ""
-"Here is an example of a wrapper, where I have built my own copy of qemu from "
-"source:"
+"Here is an example of a wrapper, where I have built my own copy of qemu from"
+" source:"
 msgstr ""
 
 #. type: verbatim
@@ -1979,6 +2034,10 @@ msgid ""
 " exec $qemudir/x86_64-softmmu/qemu-system-x86_64 -L $qemudir/pc-bios \"$@\"\n"
 "\n"
 msgstr ""
+" #!/bin/sh -\n"
+" qemudir=/home/rjones/d/qemu\n"
+" exec $qemudir/x86_64-softmmu/qemu-system-x86_64 -L $qemudir/pc-bios \"$@\"\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs.pod:942
@@ -1995,6 +2054,8 @@ msgid ""
 " LIBGUESTFS_QEMU=/tmp/qemu.wrapper guestfish\n"
 "\n"
 msgstr ""
+" LIBGUESTFS_QEMU=/tmp/qemu.wrapper guestfish\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs.pod:948
@@ -2006,7 +2067,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs.pod:951
 msgid "ATTACHING TO RUNNING DAEMONS"
-msgstr ""
+msgstr "ДОЛУЧЕННЯ ДО ЗАПУЩЕНИХ ФОНОВИХ СЛУЖБ"
 
 #. type: textblock
 #: ../src/guestfs.pod:953
@@ -2026,21 +2087,21 @@ msgstr ""
 #. type: =head3
 #: ../src/guestfs.pod:960
 msgid "Using guestfs_set_attach_method"
-msgstr ""
+msgstr "За допомогою guestfs_set_attach_method"
 
 #. type: textblock
 #: ../src/guestfs.pod:962
 msgid ""
 "By calling L</guestfs_set_attach_method> you can change how the library "
-"connects to the C<guestfsd> daemon in L</guestfs_launch> (read L</"
-"ARCHITECTURE> for some background)."
+"connects to the C<guestfsd> daemon in L</guestfs_launch> (read "
+"L</ARCHITECTURE> for some background)."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs.pod:966
 msgid ""
-"The normal attach method is C<appliance>, where a small appliance is created "
-"containing the daemon, and then the library connects to this."
+"The normal attach method is C<appliance>, where a small appliance is created"
+" containing the daemon, and then the library connects to this."
 msgstr ""
 
 #. type: textblock
@@ -2062,7 +2123,7 @@ msgstr ""
 #. type: =head3
 #: ../src/guestfs.pod:977
 msgid "Using guestfs_add_domain with live flag"
-msgstr ""
+msgstr "За допомогою guestfs_add_domain з прапорцем live"
 
 #. type: textblock
 #: ../src/guestfs.pod:979
@@ -2090,6 +2151,18 @@ msgid ""
 " </domain>\n"
 "\n"
 msgstr ""
+" <domain>\n"
+"   ...\n"
+"   <devices>\n"
+"     ...\n"
+"     <channel type='unix'>\n"
+"       <source mode='bind' path='/path/to/socket'/>\n"
+"       <target type='virtio' name='org.libguestfs.channel.0'/>\n"
+"     </channel>\n"
+"     ...\n"
+"   </devices>\n"
+" </domain>\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs.pod:997
@@ -2116,7 +2189,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs.pod:1008
 msgid "ABI GUARANTEE"
-msgstr ""
+msgstr "ГАРАНТІЯ ЩОДО ABI"
 
 #. type: textblock
 #: ../src/guestfs.pod:1010
@@ -2124,27 +2197,28 @@ msgid ""
 "We guarantee the libguestfs ABI (binary interface), for public, high-level "
 "actions as outlined in this section.  Although we will deprecate some "
 "actions, for example if they get replaced by newer calls, we will keep the "
-"old actions forever.  This allows you the developer to program in confidence "
-"against the libguestfs API."
+"old actions forever.  This allows you the developer to program in confidence"
+" against the libguestfs API."
 msgstr ""
 
 #. type: =head2
 #: ../src/guestfs.pod:1016
 msgid "BLOCK DEVICE NAMING"
-msgstr ""
+msgstr "ІМЕНУВАННЯ БЛОКОВИХ ПРИСТРОЇВ"
 
 #. type: textblock
 #: ../src/guestfs.pod:1018
 msgid ""
 "In the kernel there is now quite a profusion of schemata for naming block "
 "devices (in this context, by I<block device> I mean a physical or virtual "
-"hard drive).  The original Linux IDE driver used names starting with C</dev/"
-"hd*>.  SCSI devices have historically used a different naming scheme, C</dev/"
-"sd*>.  When the Linux kernel I<libata> driver became a popular replacement "
-"for the old IDE driver (particularly for SATA devices) those devices also "
-"used the C</dev/sd*> scheme.  Additionally we now have virtual machines with "
-"paravirtualized drivers.  This has created several different naming systems, "
-"such as C</dev/vd*> for virtio disks and C</dev/xvd*> for Xen PV disks."
+"hard drive).  The original Linux IDE driver used names starting with "
+"C</dev/hd*>.  SCSI devices have historically used a different naming scheme,"
+" C</dev/sd*>.  When the Linux kernel I<libata> driver became a popular "
+"replacement for the old IDE driver (particularly for SATA devices) those "
+"devices also used the C</dev/sd*> scheme.  Additionally we now have virtual "
+"machines with paravirtualized drivers.  This has created several different "
+"naming systems, such as C</dev/vd*> for virtio disks and C</dev/xvd*> for "
+"Xen PV disks."
 msgstr ""
 
 #. type: textblock
@@ -2167,16 +2241,16 @@ msgstr ""
 #: ../src/guestfs.pod:1039
 msgid ""
 "Therefore libguestfs defines C</dev/sd*> as the I<standard naming scheme>.  "
-"Internally C</dev/sd*> names are translated, if necessary, to other names as "
-"required.  For example, under RHEL 5 which uses the C</dev/hd*> scheme, any "
-"device parameter C</dev/sda2> is translated to C</dev/hda2> transparently."
+"Internally C</dev/sd*> names are translated, if necessary, to other names as"
+" required.  For example, under RHEL 5 which uses the C</dev/hd*> scheme, any"
+" device parameter C</dev/sda2> is translated to C</dev/hda2> transparently."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs.pod:1045
 msgid ""
-"Note that this I<only> applies to parameters.  The L</guestfs_list_devices>, "
-"L</guestfs_list_partitions> and similar calls return the true names of the "
+"Note that this I<only> applies to parameters.  The L</guestfs_list_devices>,"
+" L</guestfs_list_partitions> and similar calls return the true names of the "
 "devices and partitions as known to the appliance."
 msgstr ""
 
@@ -2188,9 +2262,9 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:1052
 msgid ""
-"Usually this translation is transparent.  However in some (very rare)  cases "
-"you may need to know the exact algorithm.  Such cases include where you use "
-"L</guestfs_config> to add a mixture of virtio and IDE devices to the qemu-"
+"Usually this translation is transparent.  However in some (very rare)  cases"
+" you may need to know the exact algorithm.  Such cases include where you use"
+" L</guestfs_config> to add a mixture of virtio and IDE devices to the qemu-"
 "based appliance, so have a mixture of C</dev/sd*> and C</dev/vd*> devices."
 msgstr ""
 
@@ -2198,8 +2272,8 @@ msgstr ""
 #: ../src/guestfs.pod:1058
 msgid ""
 "The algorithm is applied only to I<parameters> which are known to be either "
-"device or partition names.  Return values from functions such as L</"
-"guestfs_list_devices> are never changed."
+"device or partition names.  Return values from functions such as "
+"L</guestfs_list_devices> are never changed."
 msgstr ""
 
 #. type: textblock
@@ -2210,7 +2284,7 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:1070
 msgid "Does the string begin with C</dev/sd>?"
-msgstr ""
+msgstr "Чи починається рядок з C</dev/sd>?"
 
 #. type: textblock
 #: ../src/guestfs.pod:1074
@@ -2253,8 +2327,8 @@ msgstr ""
 #: ../src/guestfs.pod:1095
 msgid ""
 "Although the standard naming scheme and automatic translation is useful for "
-"simple programs and guestfish scripts, for larger programs it is best not to "
-"rely on this mechanism."
+"simple programs and guestfish scripts, for larger programs it is best not to"
+" rely on this mechanism."
 msgstr ""
 
 #. type: textblock
@@ -2299,7 +2373,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs.pod:1124
 msgid "GENERAL SECURITY CONSIDERATIONS"
-msgstr ""
+msgstr "ЗАГАЛЬНІ ЗАУВАЖЕННЯ ЩОДО ЗАХИСТУ"
 
 #. type: textblock
 #: ../src/guestfs.pod:1126
@@ -2344,7 +2418,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs.pod:1160
 msgid "SECURITY OF MOUNTING FILESYSTEMS"
-msgstr ""
+msgstr "ЗАХИСТ ФАЙЛОВИХ СИСТЕМ МОНТУВАННЯ"
 
 #. type: textblock
 #: ../src/guestfs.pod:1162
@@ -2386,15 +2460,15 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs.pod:1189
 msgid "PROTOCOL SECURITY"
-msgstr ""
+msgstr "ЗАХИСТ ПРОТОКОЛУ"
 
 #. type: textblock
 #: ../src/guestfs.pod:1191
 msgid ""
-"The protocol is designed to be secure, being based on RFC 4506 (XDR)  with a "
-"defined upper message size.  However a program that uses libguestfs must "
-"also take care - for example you can write a program that downloads a binary "
-"from a disk image and executes it locally, and no amount of protocol "
+"The protocol is designed to be secure, being based on RFC 4506 (XDR)  with a"
+" defined upper message size.  However a program that uses libguestfs must "
+"also take care - for example you can write a program that downloads a binary"
+" from a disk image and executes it locally, and no amount of protocol "
 "security will save you from the consequences."
 msgstr ""
 
@@ -2416,8 +2490,8 @@ msgstr ""
 #: ../src/guestfs.pod:1205
 msgid ""
 "Guest configuration may be altered in unusual ways by the administrator of "
-"the virtual machine, and may not reflect reality (particularly for untrusted "
-"or actively malicious guests).  For example we parse the hostname from "
+"the virtual machine, and may not reflect reality (particularly for untrusted"
+" or actively malicious guests).  For example we parse the hostname from "
 "configuration files like C</etc/sysconfig/network> that we find in the "
 "guest, but the guest administrator can easily manipulate these files to "
 "provide the wrong hostname."
@@ -2429,14 +2503,14 @@ msgid ""
 "The inspection API parses guest configuration using two external libraries: "
 "Augeas (Linux configuration) and hivex (Windows Registry).  Both are "
 "designed to be robust in the face of malicious data, although denial of "
-"service attacks are still possible, for example with oversized configuration "
-"files."
+"service attacks are still possible, for example with oversized configuration"
+" files."
 msgstr ""
 
 #. type: =head2
 #: ../src/guestfs.pod:1219
 msgid "RUNNING UNTRUSTED GUEST COMMANDS"
-msgstr ""
+msgstr "ЗАПУСК НЕЗАХИЩЕНИХ КОМАНД ГОСТЬОВОЇ СИСТЕМИ"
 
 #. type: textblock
 #: ../src/guestfs.pod:1221
@@ -2469,8 +2543,8 @@ msgstr ""
 #: ../src/guestfs.pod:1234
 msgid ""
 "A raw disk image is just the raw bytes, there is no header.  Other disk "
-"images like qcow2 contain a special header.  Qemu deals with this by looking "
-"for one of the known headers, and if none is found then assuming the disk "
+"images like qcow2 contain a special header.  Qemu deals with this by looking"
+" for one of the known headers, and if none is found then assuming the disk "
 "image must be raw."
 msgstr ""
 
@@ -2479,8 +2553,8 @@ msgstr ""
 msgid ""
 "This allows a guest which has been given a raw disk image to write some "
 "other header.  At next boot (or when the disk image is accessed by "
-"libguestfs) qemu would do autodetection and think the disk image format was, "
-"say, qcow2 based on the header written by the guest."
+"libguestfs) qemu would do autodetection and think the disk image format was,"
+" say, qcow2 based on the header written by the guest."
 msgstr ""
 
 #. type: textblock
@@ -2539,12 +2613,12 @@ msgstr ""
 #. type: =head1
 #: ../src/guestfs.pod:1279
 msgid "CONNECTION MANAGEMENT"
-msgstr ""
+msgstr "КЕРУВАННЯ З’ЄДНАННЯМ"
 
 #. type: =head2
 #: ../src/guestfs.pod:1281
 msgid "guestfs_h *"
-msgstr ""
+msgstr "guestfs_h *"
 
 #. type: textblock
 #: ../src/guestfs.pod:1283
@@ -2557,14 +2631,14 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:1287
 msgid ""
-"For information on using multiple handles and threads, see the section L</"
-"MULTIPLE HANDLES AND MULTIPLE THREADS> above."
+"For information on using multiple handles and threads, see the section "
+"L</MULTIPLE HANDLES AND MULTIPLE THREADS> above."
 msgstr ""
 
 #. type: =head2
 #: ../src/guestfs.pod:1290
 msgid "guestfs_create"
-msgstr ""
+msgstr "guestfs_create"
 
 #. type: verbatim
 #: ../src/guestfs.pod:1292
@@ -2573,17 +2647,19 @@ msgid ""
 " guestfs_h *guestfs_create (void);\n"
 "\n"
 msgstr ""
+" guestfs_h *guestfs_create (void);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs.pod:1294
 msgid "Create a connection handle."
-msgstr ""
+msgstr "Створити дескриптор з’єднання."
 
 #. type: textblock
 #: ../src/guestfs.pod:1296
 msgid ""
-"On success this returns a non-NULL pointer to a handle.  On error it returns "
-"NULL."
+"On success this returns a non-NULL pointer to a handle.  On error it returns"
+" NULL."
 msgstr ""
 
 #. type: textblock
@@ -2602,14 +2678,14 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:1305
 msgid ""
-"You may also want to configure error handling for the handle.  See the L</"
-"ERROR HANDLING> section below."
+"You may also want to configure error handling for the handle.  See the "
+"L</ERROR HANDLING> section below."
 msgstr ""
 
 #. type: =head2
 #: ../src/guestfs.pod:1308
 msgid "guestfs_close"
-msgstr ""
+msgstr "guestfs_close"
 
 #. type: verbatim
 #: ../src/guestfs.pod:1310
@@ -2618,6 +2694,8 @@ msgid ""
 " void guestfs_close (guestfs_h *g);\n"
 "\n"
 msgstr ""
+" void guestfs_close (guestfs_h *g);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs.pod:1312
@@ -2628,8 +2706,8 @@ msgstr ""
 #: ../src/guestfs.pod:1314
 msgid ""
 "If autosync was set on the handle and the handle was launched, then this "
-"implicitly calls various functions to unmount filesystems and sync the "
-"disk.  See L</guestfs_set_autosync> for more details."
+"implicitly calls various functions to unmount filesystems and sync the disk."
+"  See L</guestfs_set_autosync> for more details."
 msgstr ""
 
 #. type: textblock
@@ -2660,9 +2738,9 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:1329
 msgid ""
-"You can get at the additional information about the last error on the handle "
-"by calling L</guestfs_last_error>, L</guestfs_last_errno>, and/or by setting "
-"up an error handler with L</guestfs_set_error_handler>."
+"You can get at the additional information about the last error on the handle"
+" by calling L</guestfs_last_error>, L</guestfs_last_errno>, and/or by "
+"setting up an error handler with L</guestfs_set_error_handler>."
 msgstr ""
 
 #. type: textblock
@@ -2681,6 +2759,9 @@ msgid ""
 "   exit (EXIT_FAILURE);\n"
 "\n"
 msgstr ""
+" if (guestfs_launch (g) == -1)\n"
+"   exit (EXIT_FAILURE);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs.pod:1341
@@ -2703,6 +2784,8 @@ msgid ""
 " g = guestfs_create ();\n"
 " \n"
 msgstr ""
+" g = guestfs_create ();\n"
+" \n"
 
 #. type: verbatim
 #: ../src/guestfs.pod:1349
@@ -2727,29 +2810,37 @@ msgid ""
 "  }\n"
 "\n"
 msgstr ""
+" if (guestfs_launch (g) == -1) {\n"
+"   /* Вивчити повідомлення про помилку і вивести його тощо. */\n"
+"   char *msg = guestfs_last_error (g);\n"
+"   int errnum = guestfs_last_errno (g);\n"
+"   fprintf (stderr, \"%s\\n\", msg);\n"
+"   /* ... */\n"
+"  }\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs.pod:1361
 msgid ""
-"Out of memory errors are handled differently.  The default action is to call "
-"L<abort(3)>.  If this is undesirable, then you can set a handler using L</"
-"guestfs_set_out_of_memory_handler>."
+"Out of memory errors are handled differently.  The default action is to call"
+" L<abort(3)>.  If this is undesirable, then you can set a handler using "
+"L</guestfs_set_out_of_memory_handler>."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs.pod:1365
 msgid ""
 "L</guestfs_create> returns C<NULL> if the handle cannot be created, and "
-"because there is no handle if this happens there is no way to get additional "
-"error information.  However L</guestfs_create> is supposed to be a "
-"lightweight operation which can only fail because of insufficient memory (it "
-"returns NULL in this case)."
+"because there is no handle if this happens there is no way to get additional"
+" error information.  However L</guestfs_create> is supposed to be a "
+"lightweight operation which can only fail because of insufficient memory (it"
+" returns NULL in this case)."
 msgstr ""
 
 #. type: =head2
 #: ../src/guestfs.pod:1371
 msgid "guestfs_last_error"
-msgstr ""
+msgstr "guestfs_last_error"
 
 #. type: verbatim
 #: ../src/guestfs.pod:1373
@@ -2758,25 +2849,27 @@ msgid ""
 " const char *guestfs_last_error (guestfs_h *g);\n"
 "\n"
 msgstr ""
+" const char *guestfs_last_error (guestfs_h *g);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs.pod:1375
 msgid ""
-"This returns the last error message that happened on C<g>.  If there has not "
-"been an error since the handle was created, then this returns C<NULL>."
+"This returns the last error message that happened on C<g>.  If there has not"
+" been an error since the handle was created, then this returns C<NULL>."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs.pod:1379
 msgid ""
-"The lifetime of the returned string is until the next error occurs, or L</"
-"guestfs_close> is called."
+"The lifetime of the returned string is until the next error occurs, or "
+"L</guestfs_close> is called."
 msgstr ""
 
 #. type: =head2
 #: ../src/guestfs.pod:1382
 msgid "guestfs_last_errno"
-msgstr ""
+msgstr "guestfs_last_errno"
 
 #. type: verbatim
 #: ../src/guestfs.pod:1384
@@ -2785,6 +2878,8 @@ msgid ""
 " int guestfs_last_errno (guestfs_h *g);\n"
 "\n"
 msgstr ""
+" int guestfs_last_errno (guestfs_h *g);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs.pod:1386
@@ -2828,15 +2923,15 @@ msgid ""
 "Libguestfs tries to convert the errno from inside the applicance into a "
 "corresponding errno for the caller (not entirely trivial: the appliance "
 "might be running a completely different operating system from the library "
-"and error numbers are not standardized across Un*xen).  If this could not be "
-"done, then the error is translated to C<EINVAL>.  In practice this should "
+"and error numbers are not standardized across Un*xen).  If this could not be"
+" done, then the error is translated to C<EINVAL>.  In practice this should "
 "only happen in very rare circumstances."
 msgstr ""
 
 #. type: =head2
 #: ../src/guestfs.pod:1421
 msgid "guestfs_set_error_handler"
-msgstr ""
+msgstr "guestfs_set_error_handler"
 
 #. type: verbatim
 #: ../src/guestfs.pod:1423
@@ -2850,6 +2945,13 @@ msgid ""
 "                                 void *opaque);\n"
 "\n"
 msgstr ""
+" typedef void (*guestfs_error_handler_cb) (guestfs_h *g,\n"
+"                                           void *opaque,\n"
+"                                           const char *msg);\n"
+" void guestfs_set_error_handler (guestfs_h *g,\n"
+"                                 guestfs_error_handler_cb cb,\n"
+"                                 void *opaque);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs.pod:1430
@@ -2887,7 +2989,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs.pod:1445
 msgid "guestfs_get_error_handler"
-msgstr ""
+msgstr "guestfs_get_error_handler"
 
 #. type: verbatim
 #: ../src/guestfs.pod:1447
@@ -2897,6 +2999,9 @@ msgid ""
 "                                                     void **opaque_rtn);\n"
 "\n"
 msgstr ""
+" guestfs_error_handler_cb guestfs_get_error_handler (guestfs_h *g,\n"
+"                                                     void **opaque_rtn);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs.pod:1450
@@ -2906,7 +3011,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs.pod:1452
 msgid "guestfs_set_out_of_memory_handler"
-msgstr ""
+msgstr "guestfs_set_out_of_memory_handler"
 
 #. type: verbatim
 #: ../src/guestfs.pod:1454
@@ -2917,6 +3022,10 @@ msgid ""
 "                                        guestfs_abort_cb);\n"
 "\n"
 msgstr ""
+" typedef void (*guestfs_abort_cb) (void);\n"
+" int guestfs_set_out_of_memory_handler (guestfs_h *g,\n"
+"                                        guestfs_abort_cb);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs.pod:1458
@@ -2939,7 +3048,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs.pod:1466
 msgid "guestfs_get_out_of_memory_handler"
-msgstr ""
+msgstr "guestfs_get_out_of_memory_handler"
 
 #. type: verbatim
 #: ../src/guestfs.pod:1468
@@ -2948,6 +3057,8 @@ msgid ""
 " guestfs_abort_fn guestfs_get_out_of_memory_handler (guestfs_h *g);\n"
 "\n"
 msgstr ""
+" guestfs_abort_fn guestfs_get_out_of_memory_handler (guestfs_h *g);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs.pod:1470
@@ -2957,7 +3068,7 @@ msgstr ""
 #. type: =head1
 #: ../src/guestfs.pod:1472
 msgid "API CALLS"
-msgstr ""
+msgstr "ВИКЛИКИ API"
 
 #. type: textblock
 #: ../src/guestfs.pod:1474 ../fish/guestfish.pod:1068
@@ -2977,12 +3088,12 @@ msgstr "@STRUCTS@"
 #. type: =head1
 #: ../src/guestfs.pod:1480
 msgid "AVAILABILITY"
-msgstr ""
+msgstr "ДОСТУПНІСТЬ"
 
 #. type: =head2
 #: ../src/guestfs.pod:1482
 msgid "GROUPS OF FUNCTIONALITY IN THE APPLIANCE"
-msgstr ""
+msgstr "ГРУПИ ФУНКЦІОНАЛЬНИХ МОЖЛИВОСТЕЙ У ОБРАЗІ ОСНОВНОЇ СИСТЕМИ"
 
 #. type: textblock
 #: ../src/guestfs.pod:1484
@@ -2995,7 +3106,7 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:1489
 msgid "@AVAILABILITY@"
-msgstr ""
+msgstr "@AVAILABILITY@"
 
 #. type: =head2
 #: ../src/guestfs.pod:1491
@@ -3006,8 +3117,8 @@ msgstr ""
 #: ../src/guestfs.pod:1493
 msgid ""
 "In L<guestfish(3)> there is a handy interactive command C<supported> which "
-"prints out the available groups and whether they are supported by this build "
-"of libguestfs.  Note however that you have to do C<run> first."
+"prints out the available groups and whether they are supported by this build"
+" of libguestfs.  Note however that you have to do C<run> first."
 msgstr ""
 
 #. type: =head2
@@ -3029,6 +3140,8 @@ msgid ""
 " #define LIBGUESTFS_HAVE_DD 1\n"
 "\n"
 msgstr ""
+" #define LIBGUESTFS_HAVE_DD 1\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs.pod:1505
@@ -3039,8 +3152,8 @@ msgstr ""
 #: ../src/guestfs.pod:1507
 msgid ""
 "Before version 1.5.8, if you needed to test whether a single libguestfs "
-"function is available at compile time, we recommended using build tools such "
-"as autoconf or cmake.  For example in autotools you could use:"
+"function is available at compile time, we recommended using build tools such"
+" as autoconf or cmake.  For example in autotools you could use:"
 msgstr ""
 
 #. type: verbatim
@@ -3051,12 +3164,15 @@ msgid ""
 " AC_CHECK_FUNCS([guestfs_dd])\n"
 "\n"
 msgstr ""
+" AC_CHECK_LIB([guestfs],[guestfs_create])\n"
+" AC_CHECK_FUNCS([guestfs_dd])\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs.pod:1515
 msgid ""
-"which would result in C<HAVE_GUESTFS_DD> being either defined or not defined "
-"in your program."
+"which would result in C<HAVE_GUESTFS_DD> being either defined or not defined"
+" in your program."
 msgstr ""
 
 #. type: =head2
@@ -3093,6 +3209,12 @@ msgid ""
 " #include <guestfs.h>\n"
 " \n"
 msgstr ""
+" #include <stdio.h>\n"
+" #include <stdlib.h>\n"
+" #include <unistd.h>\n"
+" #include <dlfcn.h>\n"
+" #include <guestfs.h>\n"
+" \n"
 
 #. type: verbatim
 #: ../src/guestfs.pod:1537
@@ -3105,6 +3227,12 @@ msgid ""
 "   int has_function;\n"
 " \n"
 msgstr ""
+" main ()\n"
+" {\n"
+" #ifdef LIBGUESTFS_HAVE_DD\n"
+"   void *dl;\n"
+"   int has_function;\n"
+" \n"
 
 #. type: verbatim
 #: ../src/guestfs.pod:1543
@@ -3164,9 +3292,9 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:1574
 msgid ""
-"A recent feature of the API is the introduction of calls which take optional "
-"arguments.  In C these are declared 3 ways.  The main way is as a call which "
-"takes variable arguments (ie. C<...>), as in this example:"
+"A recent feature of the API is the introduction of calls which take optional"
+" arguments.  In C these are declared 3 ways.  The main way is as a call "
+"which takes variable arguments (ie. C<...>), as in this example:"
 msgstr ""
 
 #. type: verbatim
@@ -3176,6 +3304,8 @@ msgid ""
 " int guestfs_add_drive_opts (guestfs_h *g, const char *filename, ...);\n"
 "\n"
 msgstr ""
+" int guestfs_add_drive_opts (guestfs_h *g, const char *filename, ...);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs.pod:1581
@@ -3191,6 +3321,8 @@ msgid ""
 " guestfs_add_drive_opts (g, filename, -1);\n"
 "\n"
 msgstr ""
+" guestfs_add_drive_opts (g, filename, -1);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs.pod:1586
@@ -3206,6 +3338,10 @@ msgid ""
 "                         -1);\n"
 "\n"
 msgstr ""
+" guestfs_add_drive_opts (g, filename,\n"
+"                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"qcow2\",\n"
+"                         -1);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs.pod:1592
@@ -3222,6 +3358,11 @@ msgid ""
 "                         -1);\n"
 "\n"
 msgstr ""
+" guestfs_add_drive_opts (g, filename,\n"
+"                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"qcow2\",\n"
+"                         GUESTFS_ADD_DRIVE_OPTS_READONLY, 1,\n"
+"                         -1);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs.pod:1599
@@ -3238,8 +3379,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:1604
 msgid ""
-"The second variant has the same name with the suffix C<_va>, which works the "
-"same way but takes a C<va_list>.  See the C manual for details.  For the "
+"The second variant has the same name with the suffix C<_va>, which works the"
+" same way but takes a C<va_list>.  See the C manual for details.  For the "
 "example function, this is declared:"
 msgstr ""
 
@@ -3251,6 +3392,9 @@ msgid ""
 "                                va_list args);\n"
 "\n"
 msgstr ""
+" int guestfs_add_drive_opts_va (guestfs_h *g, const char *filename,\n"
+"                                va_list args);\n"
+"\n"
 
 #. type: =head2
 #: ../src/guestfs.pod:1611
@@ -3281,6 +3425,15 @@ msgid ""
 "              const struct guestfs_add_drive_opts_argv *optargs);\n"
 "\n"
 msgstr ""
+" struct guestfs_add_drive_opts_argv {\n"
+"   uint64_t bitmask;\n"
+"   int readonly;\n"
+"   const char *format;\n"
+"   /* ... */\n"
+" };\n"
+" int guestfs_add_drive_opts_argv (guestfs_h *g, const char *filename,\n"
+"              const struct guestfs_add_drive_opts_argv *optargs);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs.pod:1628
@@ -3299,6 +3452,13 @@ msgid ""
 " };\n"
 " \n"
 msgstr ""
+" struct guestfs_add_drive_opts_argv optargs = {\n"
+"   .bitmask = GUESTFS_ADD_DRIVE_OPTS_READONLY_BITMASK |\n"
+"              GUESTFS_ADD_DRIVE_OPTS_FORMAT_BITMASK,\n"
+"   .readonly = 1,\n"
+"   .format = \"qcow2\"\n"
+" };\n"
+" \n"
 
 #. type: verbatim
 #: ../src/guestfs.pod:1637
@@ -3307,6 +3467,8 @@ msgid ""
 " guestfs_add_drive_opts_argv (g, filename, &optargs);\n"
 "\n"
 msgstr ""
+" guestfs_add_drive_opts_argv (g, filename, &optargs);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs.pod:1639 ../src/guestfs-actions.pod:11
@@ -3318,7 +3480,8 @@ msgstr "Нотатки:"
 
 #. type: textblock
 #: ../src/guestfs.pod:1645
-msgid "The C<_BITMASK> suffix on each option name when specifying the bitmask."
+msgid ""
+"The C<_BITMASK> suffix on each option name when specifying the bitmask."
 msgstr ""
 
 #. type: textblock
@@ -3383,10 +3546,10 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:1686
 msgid ""
-"In the current implementation, events are only generated synchronously: that "
-"means that events (and hence callbacks) can only happen while you are in the "
-"middle of making another libguestfs call.  The callback is called in the "
-"same thread."
+"In the current implementation, events are only generated synchronously: that"
+" means that events (and hence callbacks) can only happen while you are in "
+"the middle of making another libguestfs call.  The callback is called in the"
+" same thread."
 msgstr ""
 
 #. type: textblock
@@ -3417,8 +3580,8 @@ msgstr ""
 #: ../src/guestfs.pod:1705
 msgid ""
 "Note that libguestfs installs an L<atexit(3)> handler to try to clean up "
-"handles that are open when the program exits.  This means that this callback "
-"might be called indirectly from L<exit(3)>, which can cause unexpected "
+"handles that are open when the program exits.  This means that this callback"
+" might be called indirectly from L<exit(3)>, which can cause unexpected "
 "problems in higher-level languages (eg. if your HLL interpreter has already "
 "been cleaned up by the time this is called, and if your callback then jumps "
 "into some HLL function)."
@@ -3487,9 +3650,10 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:1745
 msgid ""
-"The units of C<total> are not defined, although for some operations C<total> "
-"may relate in some way to the amount of data to be transferred (eg. in bytes "
-"or megabytes), and C<position> may be the portion which has been transferred."
+"The units of C<total> are not defined, although for some operations C<total>"
+" may relate in some way to the amount of data to be transferred (eg. in "
+"bytes or megabytes), and C<position> may be the portion which has been "
+"transferred."
 msgstr ""
 
 #. type: textblock
@@ -3521,16 +3685,16 @@ msgstr ""
 #: ../src/guestfs.pod:1769
 msgid ""
 "This is to simplify caller code, so callers can easily set the progress "
-"indicator to \"100%\" at the end of the operation, without requiring special "
-"code to detect this case."
+"indicator to \"100%\" at the end of the operation, without requiring special"
+" code to detect this case."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs.pod:1775
 msgid ""
 "For some calls we are unable to estimate the progress of the call, but we "
-"can still generate progress messages to indicate activity.  This is known as "
-"\"pulse mode\", and is directly supported by certain progress bar "
+"can still generate progress messages to indicate activity.  This is known as"
+" \"pulse mode\", and is directly supported by certain progress bar "
 "implementations (eg. GtkProgressBar)."
 msgstr ""
 
@@ -3571,15 +3735,15 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:1800
 msgid ""
-"The callback function is called whenever a log message is generated by qemu, "
-"the appliance kernel, guestfsd (daemon), or utility programs."
+"The callback function is called whenever a log message is generated by qemu,"
+" the appliance kernel, guestfsd (daemon), or utility programs."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs.pod:1803
 msgid ""
-"If the verbose flag (L</guestfs_set_verbose>) is set before launch (L</"
-"guestfs_launch>) then additional debug messages are generated."
+"If the verbose flag (L</guestfs_set_verbose>) is set before launch "
+"(L</guestfs_launch>) then additional debug messages are generated."
 msgstr ""
 
 #. type: textblock
@@ -3617,8 +3781,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:1828
 msgid ""
-"The callback function is called whenever a trace message is generated.  This "
-"only applies if the trace flag (L</guestfs_set_trace>) is set."
+"The callback function is called whenever a trace message is generated.  This"
+" only applies if the trace flag (L</guestfs_set_trace>) is set."
 msgstr ""
 
 #. type: textblock
@@ -3656,8 +3820,8 @@ msgstr ""
 #: ../src/guestfs.pod:1848
 msgid ""
 "For example, to register for all log message events, you could call this "
-"function with the bitmask C<GUESTFS_EVENT_APPLIANCE|GUESTFS_EVENT_LIBRARY>.  "
-"To register a single callback for all possible classes of events, use "
+"function with the bitmask C<GUESTFS_EVENT_APPLIANCE|GUESTFS_EVENT_LIBRARY>."
+"  To register a single callback for all possible classes of events, use "
 "C<GUESTFS_EVENT_ALL>."
 msgstr ""
 
@@ -3669,8 +3833,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:1856
 msgid ""
-"C<opaque> is an opaque pointer which is passed to the callback.  You can use "
-"it for any purpose."
+"C<opaque> is an opaque pointer which is passed to the callback.  You can use"
+" it for any purpose."
 msgstr ""
 
 #. type: textblock
@@ -3683,8 +3847,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:1862
 msgid ""
-"If there is an error, this function returns C<-1>, and sets the error in the "
-"handle in the usual way (see L</guestfs_last_error> etc.)"
+"If there is an error, this function returns C<-1>, and sets the error in the"
+" handle in the usual way (see L</guestfs_last_error> etc.)"
 msgstr ""
 
 #. type: textblock
@@ -3718,8 +3882,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:1876
 msgid ""
-"Delete a callback that was previously registered.  C<event_handle> should be "
-"the integer that was returned by a previous call to "
+"Delete a callback that was previously registered.  C<event_handle> should be"
+" the integer that was returned by a previous call to "
 "C<guestfs_set_event_callback> on the same handle."
 msgstr ""
 
@@ -3760,9 +3924,9 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:1898
 msgid ""
-"The remaining parameters contain the event payload (if any).  Each event may "
-"contain a payload, which usually relates to the event class, but for future "
-"proofing your code should be written to handle any payload for any event "
+"The remaining parameters contain the event payload (if any).  Each event may"
+" contain a payload, which usually relates to the event class, but for future"
+" proofing your code should be written to handle any payload for any event "
 "class."
 msgstr ""
 
@@ -3890,17 +4054,17 @@ msgstr ""
 #: ../src/guestfs.pod:1966
 msgid ""
 "Unlike most other libguestfs calls, this function is signal safe and thread "
-"safe.  You can call it from a signal handler or from another thread, without "
-"needing to do any locking."
+"safe.  You can call it from a signal handler or from another thread, without"
+" needing to do any locking."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs.pod:1970
 msgid ""
 "The transfer that was in progress (if there is one) will stop shortly "
-"afterwards, and will return an error.  The errno (see L</"
-"guestfs_last_errno>) is set to C<EINTR>, so you can test for this to find "
-"out if the operation was cancelled or failed because of another error."
+"afterwards, and will return an error.  The errno (see "
+"L</guestfs_last_errno>) is set to C<EINTR>, so you can test for this to find"
+" out if the operation was cancelled or failed because of another error."
 msgstr ""
 
 #. type: textblock
@@ -3913,7 +4077,8 @@ msgstr ""
 
 #. type: textblock
 #: ../src/guestfs.pod:1980
-msgid "There are two common places that you might call C<guestfs_user_cancel>."
+msgid ""
+"There are two common places that you might call C<guestfs_user_cancel>."
 msgstr ""
 
 #. type: textblock
@@ -3957,6 +4122,8 @@ msgid ""
 " void guestfs_set_private (guestfs_h *g, const char *key, void *data);\n"
 "\n"
 msgstr ""
+" void guestfs_set_private (guestfs_h *g, const char *key, void *data);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs.pod:2002
@@ -3988,6 +4155,8 @@ msgid ""
 " void *guestfs_get_private (guestfs_h *g, const char *key);\n"
 "\n"
 msgstr ""
+" void *guestfs_get_private (guestfs_h *g, const char *key);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs.pod:2016
@@ -4032,8 +4201,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:2033
 msgid ""
-"C<guestfs_first_private> returns the first key, pointer pair (\"first\" does "
-"not have any particular meaning -- keys are not returned in any defined "
+"C<guestfs_first_private> returns the first key, pointer pair (\"first\" does"
+" not have any particular meaning -- keys are not returned in any defined "
 "order).  A pointer to the key is returned in C<*key_rtn> and the "
 "corresponding data pointer is returned from the function.  C<NULL> is "
 "returned if there are no keys stored in the handle."
@@ -4115,8 +4284,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:2085
 msgid ""
-"More commonly you are only interested in keys that begin with an application-"
-"specific prefix C<foo_>.  Modify the loop like so:"
+"More commonly you are only interested in keys that begin with an "
+"application-specific prefix C<foo_>.  Modify the loop like so:"
 msgstr ""
 
 #. type: verbatim
@@ -4181,11 +4350,11 @@ msgstr "html"
 #. type: textblock
 #: ../src/guestfs.pod:2124
 msgid ""
-"<!-- old anchor for the next section --> <a name="
-"\"state_machine_and_low_level_event_api\"/>"
+"<!-- old anchor for the next section --> <a "
+"name=\"state_machine_and_low_level_event_api\"/>"
 msgstr ""
-"<!-- old anchor for the next section --> <a name="
-"\"state_machine_and_low_level_event_api\"/>"
+"<!-- old anchor for the next section --> <a "
+"name=\"state_machine_and_low_level_event_api\"/>"
 
 #. type: =head1
 #: ../src/guestfs.pod:2129
@@ -4229,8 +4398,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:2155
 msgid ""
-"The library, linked to the main program, creates the child process and hence "
-"the appliance in the L</guestfs_launch> function."
+"The library, linked to the main program, creates the child process and hence"
+" the appliance in the L</guestfs_launch> function."
 msgstr ""
 
 #. type: textblock
@@ -4239,8 +4408,8 @@ msgid ""
 "Inside the appliance is a Linux kernel and a complete stack of userspace "
 "tools (such as LVM and ext2 programs) and a small controlling daemon called "
 "L</guestfsd>.  The library talks to L</guestfsd> using remote procedure "
-"calls (RPC).  There is a mostly one-to-one correspondence between libguestfs "
-"API calls and RPC calls to the daemon.  Lastly the disk image(s) are "
+"calls (RPC).  There is a mostly one-to-one correspondence between libguestfs"
+" API calls and RPC calls to the daemon.  Lastly the disk image(s) are "
 "attached to the qemu process which translates device access by the "
 "appliance's Linux kernel into accesses to the image."
 msgstr ""
@@ -4248,8 +4417,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:2167
 msgid ""
-"A common misunderstanding is that the appliance \"is\" the virtual machine.  "
-"Although the disk image you are attached to might also be used by some "
+"A common misunderstanding is that the appliance \"is\" the virtual machine."
+"  Although the disk image you are attached to might also be used by some "
 "virtual machine, libguestfs doesn't know or care about this.  (But you will "
 "care if both libguestfs's qemu process and your virtual machine are trying "
 "to update the disk image at the same time, since these usually results in "
@@ -4297,9 +4466,9 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:2200
 msgid ""
-"The normal transitions are (1) CONFIG (when the handle is created, but there "
-"is no child process), (2) LAUNCHING (when the child process is booting up), "
-"(3) alternating between READY and BUSY as commands are issued to, and "
+"The normal transitions are (1) CONFIG (when the handle is created, but there"
+" is no child process), (2) LAUNCHING (when the child process is booting up),"
+" (3) alternating between READY and BUSY as commands are issued to, and "
 "carried out by, the child process."
 msgstr ""
 
@@ -4307,8 +4476,8 @@ msgstr ""
 #: ../src/guestfs.pod:2205
 msgid ""
 "The guest may be killed by L</guestfs_kill_subprocess>, or may die "
-"asynchronously at any time (eg. due to some internal error), and that causes "
-"the state to transition back to CONFIG."
+"asynchronously at any time (eg. due to some internal error), and that causes"
+" the state to transition back to CONFIG."
 msgstr ""
 
 #. type: textblock
@@ -4331,8 +4500,8 @@ msgstr ""
 #: ../src/guestfs.pod:2218
 msgid ""
 "API actions such as L</guestfs_mount> can only be issued when in the READY "
-"state.  These API calls block waiting for the command to be carried out (ie. "
-"the state to transition to BUSY and then back to READY).  There are no non-"
+"state.  These API calls block waiting for the command to be carried out (ie."
+" the state to transition to BUSY and then back to READY).  There are no non-"
 "blocking versions, and no way to issue more than one command per handle at "
 "the same time."
 msgstr ""
@@ -4383,8 +4552,8 @@ msgid ""
 "There are two broad cases, ordinary functions that don't have any C<FileIn> "
 "and C<FileOut> parameters, which are handled with very simple request/reply "
 "messages.  Then there are functions that have any C<FileIn> or C<FileOut> "
-"parameters, which use the same request and reply messages, but they may also "
-"be followed by files sent using a chunked encoding."
+"parameters, which use the same request and reply messages, but they may also"
+" be followed by files sent using a chunked encoding."
 msgstr ""
 
 #. type: =head3
@@ -4412,9 +4581,9 @@ msgstr ""
 #: ../src/guestfs.pod:2258
 msgid ""
 "The total length field allows the daemon to allocate a fixed size buffer "
-"into which it slurps the rest of the message.  As a result, the total length "
-"is limited to C<GUESTFS_MESSAGE_MAX> bytes (currently 4MB), which means the "
-"effective size of any request is limited to somewhere under this size."
+"into which it slurps the rest of the message.  As a result, the total length"
+" is limited to C<GUESTFS_MESSAGE_MAX> bytes (currently 4MB), which means the"
+" effective size of any request is limited to somewhere under this size."
 msgstr ""
 
 #. type: textblock
@@ -4506,8 +4675,8 @@ msgstr ""
 #: ../src/guestfs.pod:2305
 msgid ""
 "A C<FileIn> parameter indicates that we transfer a file I<into> the guest.  "
-"The normal request message is sent (see above).  However this is followed by "
-"a sequence of file chunks."
+"The normal request message is sent (see above).  However this is followed by"
+" a sequence of file chunks."
 msgstr ""
 
 #. type: verbatim
@@ -4556,8 +4725,8 @@ msgstr ""
 msgid ""
 "At time of writing there are no functions that have more than one FileIn "
 "parameter.  However this is (theoretically) supported, by sending the "
-"sequence of chunks for each FileIn parameter one after another (from left to "
-"right)."
+"sequence of chunks for each FileIn parameter one after another (from left to"
+" right)."
 msgstr ""
 
 #. type: textblock
@@ -4587,8 +4756,8 @@ msgid ""
 "This protocol allows the transfer of arbitrary sized files (no 32 bit "
 "limit), and also files where the size is not known in advance (eg. from "
 "pipes or sockets).  However the chunks are rather small "
-"(C<GUESTFS_MAX_CHUNK_SIZE>), so that neither the library nor the daemon need "
-"to keep much in memory."
+"(C<GUESTFS_MAX_CHUNK_SIZE>), so that neither the library nor the daemon need"
+" to keep much in memory."
 msgstr ""
 
 #. type: =head3
@@ -4626,8 +4795,8 @@ msgstr ""
 #: ../src/guestfs.pod:2372
 msgid ""
 "When the daemon launches it sends an initial word (C<GUESTFS_LAUNCH_FLAG>) "
-"which indicates that the guest and daemon is alive.  This is what L</"
-"guestfs_launch> waits for."
+"which indicates that the guest and daemon is alive.  This is what "
+"L</guestfs_launch> waits for."
 msgstr ""
 
 #. type: =head3
@@ -4646,9 +4815,9 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:2382
 msgid ""
-"The library turns them into progress callbacks (see L</"
-"GUESTFS_EVENT_PROGRESS>) if there is a callback registered, or discards them "
-"if not."
+"The library turns them into progress callbacks (see "
+"L</GUESTFS_EVENT_PROGRESS>) if there is a callback registered, or discards "
+"them if not."
 msgstr ""
 
 #. type: textblock
@@ -4697,11 +4866,11 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:2410
 msgid ""
-"As time passes we cherry pick fixes from the development branch and backport "
-"those into the stable branch, the effect being that the stable branch should "
-"get more stable and less buggy over time.  So the stable releases are ideal "
-"for people who don't need new features but would just like the software to "
-"work."
+"As time passes we cherry pick fixes from the development branch and backport"
+" those into the stable branch, the effect being that the stable branch "
+"should get more stable and less buggy over time.  So the stable releases are"
+" ideal for people who don't need new features but would just like the "
+"software to work."
 msgstr ""
 
 #. type: textblock
@@ -4742,12 +4911,12 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:2445
 msgid ""
-"A new stable branch starts when we think the new features in development are "
-"substantial and compelling enough over the current stable branch to warrant "
-"it.  When that happens we create new stable and development versions 1.N.0 "
+"A new stable branch starts when we think the new features in development are"
+" substantial and compelling enough over the current stable branch to warrant"
+" it.  When that happens we create new stable and development versions 1.N.0 "
 "and 1.(N+1).0 [N is even].  The new dot-oh release won't necessarily be so "
-"stable at this point, but by backporting fixes from development, that branch "
-"will stabilize over time."
+"stable at this point, but by backporting fixes from development, that branch"
+" will stabilize over time."
 msgstr ""
 
 #. type: =head1
@@ -4785,10 +4954,10 @@ msgstr ""
 msgid ""
 "There are two sorts of API action, depending on whether the call goes "
 "through to the daemon in the appliance, or is serviced entirely by the "
-"library (see L</ARCHITECTURE> above).  L</guestfs_sync> is an example of the "
-"former, since the sync is done in the appliance.  L</guestfs_set_trace> is "
-"an example of the latter, since a trace flag is maintained in the handle and "
-"all tracing is done on the library side."
+"library (see L</ARCHITECTURE> above).  L</guestfs_sync> is an example of the"
+" former, since the sync is done in the appliance.  L</guestfs_set_trace> is "
+"an example of the latter, since a trace flag is maintained in the handle and"
+" all tracing is done on the library side."
 msgstr ""
 
 #. type: textblock
@@ -4807,8 +4976,8 @@ msgid ""
 "For library-only actions of the second type, add to the "
 "C<non_daemon_functions> list.  Since these functions are serviced by the "
 "library and do not travel over the RPC mechanism to the daemon, these "
-"functions do not need a procedure number, and so the procedure number is set "
-"to C<-1>."
+"functions do not need a procedure number, and so the procedure number is set"
+" to C<-1>."
 msgstr ""
 
 #. type: textblock
@@ -4857,10 +5026,10 @@ msgstr ""
 #: ../src/guestfs.pod:2512
 msgid ""
 "You can supply zero or as many tests as you want per API call.  The tests "
-"can either be added as part of the API description (C<generator/"
-"generator_actions.ml>), or in some rarer cases you may want to drop a script "
-"into C<regressions/>.  Note that adding a script to C<regressions/> is "
-"slower, so if possible use the first method."
+"can either be added as part of the API description "
+"(C<generator/generator_actions.ml>), or in some rarer cases you may want to "
+"drop a script into C<regressions/>.  Note that adding a script to "
+"C<regressions/> is slower, so if possible use the first method."
 msgstr ""
 
 #. type: textblock
@@ -4878,7 +5047,7 @@ msgstr ""
 #. type: =item
 #: ../src/guestfs.pod:2525
 msgid "C</dev/sda> 500MB"
-msgstr ""
+msgstr "C</dev/sda> 500 МБ"
 
 #. type: textblock
 #: ../src/guestfs.pod:2527
@@ -4888,7 +5057,7 @@ msgstr ""
 #. type: =item
 #: ../src/guestfs.pod:2529
 msgid "C</dev/sdb> 50MB"
-msgstr ""
+msgstr "C</dev/sdb> 50 МБ"
 
 #. type: textblock
 #: ../src/guestfs.pod:2531
@@ -4900,7 +5069,7 @@ msgstr ""
 #. type: =item
 #: ../src/guestfs.pod:2534
 msgid "C</dev/sdc> 10MB"
-msgstr ""
+msgstr "C</dev/sdc> 10 МБ"
 
 #. type: textblock
 #: ../src/guestfs.pod:2536
@@ -4999,8 +5168,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:2577
 msgid ""
-"See C<capitests/tests.c> for more details of how these environment variables "
-"work."
+"See C<capitests/tests.c> for more details of how these environment variables"
+" work."
 msgstr ""
 
 #. type: =head2
@@ -5044,8 +5213,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:2598
 msgid ""
-"If you use Emacs, add the following to one of one of your start-up files (e."
-"g., ~/.emacs), to help ensure that you get indentation right:"
+"If you use Emacs, add the following to one of one of your start-up files "
+"(e.g., ~/.emacs), to help ensure that you get indentation right:"
 msgstr ""
 
 #. type: verbatim
@@ -5094,6 +5263,8 @@ msgid ""
 " ./configure --enable-gcc-warnings\n"
 "\n"
 msgstr ""
+" ./configure --enable-gcc-warnings\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs.pod:2628
@@ -5117,8 +5288,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:2635
 msgid ""
-"In the daemon code we have created custom printf formatters C<%Q> and C<%R>, "
-"which are used to do shell quoting."
+"In the daemon code we have created custom printf formatters C<%Q> and C<%R>,"
+" which are used to do shell quoting."
 msgstr ""
 
 #. type: =item
@@ -5166,10 +5337,10 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:2658
 msgid ""
-"I<Note:> Do I<not> use these when you are passing parameters to the C<command"
-"{,r,v,rv}()> functions.  These parameters do NOT need to be quoted because "
-"they are not passed via the shell (instead, straight to exec).  You probably "
-"want to use the C<sysroot_path()> function however."
+"I<Note:> Do I<not> use these when you are passing parameters to the "
+"C<command{,r,v,rv}()> functions.  These parameters do NOT need to be quoted "
+"because they are not passed via the shell (instead, straight to exec).  You "
+"probably want to use the C<sysroot_path()> function however."
 msgstr ""
 
 #. type: =head2
@@ -5180,8 +5351,9 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:2666
 msgid ""
-"Submit patches to the mailing list: L<http://www.redhat.com/mailman/listinfo/"
-"libguestfs> and CC to L<rjones@redhat.com>."
+"Submit patches to the mailing list: "
+"L<http://www.redhat.com/mailman/listinfo/libguestfs> and CC to "
+"L<rjones@redhat.com>."
 msgstr ""
 
 #. type: =head2
@@ -5198,9 +5370,9 @@ msgstr ""
 #: ../src/guestfs.pod:2674
 msgid ""
 "However many messages come from the daemon, and we don't translate those at "
-"the moment.  One reason is that the appliance generally has all locale files "
-"removed from it, because they take up a lot of space.  So we'd have to readd "
-"some of those, as well as copying our PO files into the appliance."
+"the moment.  One reason is that the appliance generally has all locale files"
+" removed from it, because they take up a lot of space.  So we'd have to "
+"readd some of those, as well as copying our PO files into the appliance."
 msgstr ""
 
 #. type: textblock
@@ -5250,16 +5422,14 @@ msgstr ""
 
 #. type: =item
 #: ../src/guestfs.pod:2700
-#, fuzzy
-#| msgid "C<cat>"
 msgid "C<caution>"
-msgstr "C<cat>"
+msgstr ""
 
 #. type: textblock
 #: ../src/guestfs.pod:2702
 msgid ""
-"Safety and liveness tests of components that libguestfs depends upon (not of "
-"libguestfs itself).  Mainly this is for qemu and the kernel."
+"Safety and liveness tests of components that libguestfs depends upon (not of"
+" libguestfs itself).  Mainly this is for qemu and the kernel."
 msgstr ""
 
 #. type: =item
@@ -5280,7 +5450,8 @@ msgstr "C<daemon>"
 #. type: textblock
 #: ../src/guestfs.pod:2711
 msgid ""
-"The daemon that runs inside the libguestfs appliance and carries out actions."
+"The daemon that runs inside the libguestfs appliance and carries out "
+"actions."
 msgstr ""
 
 #. type: =item
@@ -5322,8 +5493,8 @@ msgstr "C<fish>"
 #: ../src/guestfs.pod:2728
 msgid ""
 "L<guestfish(1)>, the command-line shell, and various shell scripts built on "
-"top such as L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, "
-"L<virt-tar-out(1)>."
+"top such as L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, L"
+"<virt-tar-out(1)>."
 msgstr ""
 
 #. type: =item
@@ -5454,7 +5625,8 @@ msgstr "C<tools>"
 
 #. type: textblock
 #: ../src/guestfs.pod:2783
-msgid "Command line tools written in Perl (L<virt-resize(1)> and many others)."
+msgid ""
+"Command line tools written in Perl (L<virt-resize(1)> and many others)."
 msgstr ""
 
 #. type: =item
@@ -5522,7 +5694,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs.pod:2812
 msgid "PROTOCOL LIMITS"
-msgstr ""
+msgstr "ОБМЕЖЕННЯ ПРОТОКОЛУ"
 
 #. type: textblock
 #: ../src/guestfs.pod:2814
@@ -5539,8 +5711,8 @@ msgstr ""
 #: ../src/guestfs.pod:2822
 msgid ""
 "A simple call such as L</guestfs_cat> returns its result (the file data) in "
-"a simple string.  Because this string is at some point internally encoded as "
-"a message, the maximum size that it can return is slightly under 4 MB.  If "
+"a simple string.  Because this string is at some point internally encoded as"
+" a message, the maximum size that it can return is slightly under 4 MB.  If "
 "the requested file is larger than this then you will get an error."
 msgstr ""
 
@@ -5566,14 +5738,15 @@ msgstr ""
 
 #. type: textblock
 #: ../src/guestfs.pod:2837
-msgid "When using virtio disks (the default) the current limit is B<25> disks."
+msgid ""
+"When using virtio disks (the default) the current limit is B<25> disks."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs.pod:2840
 msgid ""
-"Virtio itself consumes 1 virtual PCI slot per disk, and PCI is limited to 31 "
-"slots.  However febootstrap only understands disks with names C</dev/vda> "
+"Virtio itself consumes 1 virtual PCI slot per disk, and PCI is limited to 31"
+" slots.  However febootstrap only understands disks with names C</dev/vda> "
 "through C</dev/vdz> (26 letters) and it reserves one disk for its own "
 "purposes."
 msgstr ""
@@ -5606,8 +5779,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:2856
 msgid ""
-"This is because it reserves 4 bits for the minor device number (thus C</dev/"
-"vda>, and C</dev/vda1> through C</dev/vda15>)."
+"This is because it reserves 4 bits for the minor device number (thus "
+"C</dev/vda>, and C</dev/vda1> through C</dev/vda15>)."
 msgstr ""
 
 #. type: textblock
@@ -5660,16 +5833,16 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:2881
 msgid ""
-"The MBR (ie. classic MS-DOS) partitioning scheme uses 32 bit sector "
-"numbers.  Assuming a 512 byte sector size, this means that MBR cannot "
-"address a partition located beyond 2 TB on the disk."
+"The MBR (ie. classic MS-DOS) partitioning scheme uses 32 bit sector numbers."
+"  Assuming a 512 byte sector size, this means that MBR cannot address a "
+"partition located beyond 2 TB on the disk."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs.pod:2885
 msgid ""
-"It is recommended that you use GPT partitions on disks which are larger than "
-"this size.  GPT uses 64 bit sector numbers and so can address partitions "
+"It is recommended that you use GPT partitions on disks which are larger than"
+" this size.  GPT uses 64 bit sector numbers and so can address partitions "
 "which are theoretically larger than the largest disk we could support."
 msgstr ""
 
@@ -5694,17 +5867,15 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:2898
 msgid ""
-"The API functions L</guestfs_upload>, L</guestfs_download>, L</"
-"guestfs_tar_in>, L</guestfs_tar_out> and the like allow unlimited sized "
+"The API functions L</guestfs_upload>, L</guestfs_download>, "
+"L</guestfs_tar_in>, L</guestfs_tar_out> and the like allow unlimited sized "
 "uploads and downloads."
 msgstr ""
 
 #. type: =head2
 #: ../src/guestfs.pod:2902
-#, fuzzy
-#| msgid "INSPECTION"
 msgid "INSPECTION LIMITS"
-msgstr "ПЕРЕВІРКА"
+msgstr ""
 
 #. type: textblock
 #: ../src/guestfs.pod:2904
@@ -5735,7 +5906,7 @@ msgstr ""
 #. type: =item
 #: ../src/guestfs.pod:2918 ../fish/guestfish.pod:1110
 msgid "LIBGUESTFS_DEBUG"
-msgstr ""
+msgstr "LIBGUESTFS_DEBUG"
 
 #. type: textblock
 #: ../src/guestfs.pod:2920
@@ -5747,7 +5918,7 @@ msgstr ""
 #. type: =item
 #: ../src/guestfs.pod:2923 ../fish/guestfish.pod:1115
 msgid "LIBGUESTFS_MEMSIZE"
-msgstr ""
+msgstr "LIBGUESTFS_MEMSIZE"
 
 #. type: textblock
 #: ../src/guestfs.pod:2925 ../fish/guestfish.pod:1117
@@ -5762,6 +5933,8 @@ msgid ""
 " LIBGUESTFS_MEMSIZE=700\n"
 "\n"
 msgstr ""
+" LIBGUESTFS_MEMSIZE=700\n"
+"\n"
 
 #. type: =item
 #: ../src/guestfs.pod:2930 ../fish/guestfish.pod:1122
@@ -5783,8 +5956,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:2937 ../fish/guestfish.pod:1129
 msgid ""
-"Set the default qemu binary that libguestfs uses.  If not set, then the qemu "
-"which was found at compile time by the configure script is used."
+"Set the default qemu binary that libguestfs uses.  If not set, then the qemu"
+" which was found at compile time by the configure script is used."
 msgstr ""
 
 #. type: textblock
@@ -5837,20 +6010,21 @@ msgstr "ТАКОЖ ПЕРЕГЛЯНЬТЕ"
 #. type: textblock
 #: ../src/guestfs.pod:2963
 msgid ""
-"L<guestfs-examples(3)>, L<guestfs-ocaml(3)>, L<guestfs-python(3)>, L<guestfs-"
-"ruby(3)>, L<guestfish(1)>, L<guestmount(1)>, L<virt-cat(1)>, L<virt-copy-in"
-"(1)>, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, L<virt-filesystems"
-"(1)>, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, L<virt-list-"
-"partitions(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, L<virt-rescue(1)>, L<virt-"
-"tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<virt-win-reg(1)>, L<qemu(1)"
-">, L<febootstrap(1)>, L<hivex(3)>, L<http://libguestfs.org/>."
+"L<guestfs-examples(3)>, L<guestfs-ocaml(3)>, L<guestfs-python(3)>, L"
+"<guestfs-ruby(3)>, L<guestfish(1)>, L<guestmount(1)>, L<virt-cat(1)>, L"
+"<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, L"
+"<virt-filesystems(1)>, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, L"
+"<virt-list-partitions(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, L<virt-"
+"rescue(1)>, L<virt-tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<virt-"
+"win-reg(1)>, L<qemu(1)>, L<febootstrap(1)>, L<hivex(3)>, "
+"L<http://libguestfs.org/>."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs.pod:2990
 msgid ""
-"Tools with a similar purpose: L<fdisk(8)>, L<parted(8)>, L<kpartx(8)>, L<lvm"
-"(8)>, L<disktype(1)>."
+"Tools with a similar purpose: L<fdisk(8)>, L<parted(8)>, L<kpartx(8)>, "
+"L<lvm(8)>, L<disktype(1)>."
 msgstr ""
 
 #. type: =head1
@@ -5869,11 +6043,9 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:3001
 msgid ""
-"L<https://bugzilla.redhat.com/buglist.cgi?"
-"component=libguestfs&product=Virtualization+Tools>"
+"L<https://bugzilla.redhat.com/buglist.cgi?component=libguestfs&product=Virtualization+Tools>"
 msgstr ""
-"L<https://bugzilla.redhat.com/buglist.cgi?"
-"component=libguestfs&product=Virtualization+Tools>"
+"L<https://bugzilla.redhat.com/buglist.cgi?component=libguestfs&product=Virtualization+Tools>"
 
 #. type: textblock
 #: ../src/guestfs.pod:3003
@@ -5883,11 +6055,9 @@ msgstr "Для звітування щодо вад у libguestfs скорист
 #. type: textblock
 #: ../src/guestfs.pod:3005
 msgid ""
-"L<https://bugzilla.redhat.com/enter_bug.cgi?"
-"component=libguestfs&product=Virtualization+Tools>"
+"L<https://bugzilla.redhat.com/enter_bug.cgi?component=libguestfs&product=Virtualization+Tools>"
 msgstr ""
-"L<https://bugzilla.redhat.com/enter_bug.cgi?"
-"component=libguestfs&product=Virtualization+Tools>"
+"L<https://bugzilla.redhat.com/enter_bug.cgi?component=libguestfs&product=Virtualization+Tools>"
 
 #. type: textblock
 #: ../src/guestfs.pod:3007
@@ -5912,8 +6082,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs.pod:3025
 msgid ""
-"Run libguestfs-test-tool and paste the B<complete, unedited> output into the "
-"bug report."
+"Run libguestfs-test-tool and paste the B<complete, unedited> output into the"
+" bug report."
 msgstr ""
 
 #. type: =head1
@@ -5947,8 +6117,8 @@ msgstr ""
 #: ../src/guestfs.pod:3039
 msgid ""
 "This library is free software; you can redistribute it and/or modify it "
-"under the terms of the GNU Lesser General Public License as published by the "
-"Free Software Foundation; either version 2 of the License, or (at your "
+"under the terms of the GNU Lesser General Public License as published by the"
+" Free Software Foundation; either version 2 of the License, or (at your "
 "option) any later version."
 msgstr ""
 
@@ -5957,8 +6127,8 @@ msgstr ""
 msgid ""
 "This library is distributed in the hope that it will be useful, but WITHOUT "
 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
-"FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License "
-"for more details."
+"FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License"
+" for more details."
 msgstr ""
 
 #. type: textblock
@@ -5999,8 +6169,8 @@ msgstr ""
 msgid ""
 "This call checks for the existence of C<filename>.  This stops you from "
 "specifying other types of drive which are supported by qemu such as C<nbd:> "
-"and C<http:> URLs.  To specify those, use the general C<guestfs_config> call "
-"instead."
+"and C<http:> URLs.  To specify those, use the general C<guestfs_config> call"
+" instead."
 msgstr ""
 
 #. type: textblock
@@ -6192,10 +6362,10 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:59
 msgid ""
-"This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
-"It works by connecting to libvirt, requesting the domain and domain XML from "
-"libvirt, parsing it for disks, and calling C<guestfs_add_drive_opts> on each "
-"one."
+"This function adds the disk(s) attached to the named libvirt domain C<dom>."
+"  It works by connecting to libvirt, requesting the domain and domain XML "
+"from libvirt, parsing it for disks, and calling C<guestfs_add_drive_opts> on"
+" each one."
 msgstr ""
 
 #. type: textblock
@@ -6216,18 +6386,18 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:71 ../fish/guestfish-actions.pod:53
 msgid ""
-"Disks must be accessible locally.  This often means that adding disks from a "
-"remote libvirt connection (see L<http://libvirt.org/remote.html>)  will fail "
-"unless those disks are accessible via the same device path locally too."
+"Disks must be accessible locally.  This often means that adding disks from a"
+" remote libvirt connection (see L<http://libvirt.org/remote.html>)  will "
+"fail unless those disks are accessible via the same device path locally too."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:76 ../fish/guestfish-actions.pod:58
 msgid ""
-"The optional C<libvirturi> parameter sets the libvirt URI (see L<http://"
-"libvirt.org/uri.html>).  If this is not set then we connect to the default "
-"libvirt URI (or one set through an environment variable, see the libvirt "
-"documentation for full details)."
+"The optional C<libvirturi> parameter sets the libvirt URI (see "
+"L<http://libvirt.org/uri.html>).  If this is not set then we connect to the "
+"default libvirt URI (or one set through an environment variable, see the "
+"libvirt documentation for full details)."
 msgstr ""
 
 #. type: textblock
@@ -6236,8 +6406,8 @@ msgid ""
 "The optional C<live> flag controls whether this call will try to connect to "
 "a running virtual machine C<guestfsd> process if it sees a suitable "
 "E<lt>channelE<gt> element in the libvirt XML definition.  The default (if "
-"the flag is omitted) is never to try.  See L<guestfs(3)/ATTACHING TO RUNNING "
-"DAEMONS> for more information."
+"the flag is omitted) is never to try.  See L<guestfs(3)/ATTACHING TO RUNNING"
+" DAEMONS> for more information."
 msgstr ""
 
 #. type: textblock
@@ -6245,8 +6415,8 @@ msgstr ""
 msgid ""
 "If the C<allowuuid> flag is true (default is false) then a UUID I<may> be "
 "passed instead of the domain name.  The C<dom> string is treated as a UUID "
-"first and looked up, and if that lookup fails then we treat C<dom> as a name "
-"as usual."
+"first and looked up, and if that lookup fails then we treat C<dom> as a name"
+" as usual."
 msgstr ""
 
 #. type: textblock
@@ -6308,12 +6478,12 @@ msgstr ""
 #: ../src/guestfs-actions.pod:4987 ../src/guestfs-actions.pod:4999
 #: ../src/guestfs-actions.pod:5225 ../src/guestfs-actions.pod:5236
 msgid "See L</CALLS WITH OPTIONAL ARGUMENTS>."
-msgstr ""
+msgstr "Див. L</CALLS WITH OPTIONAL ARGUMENTS>."
 
 #. type: =head2
 #: ../src/guestfs-actions.pod:112
 msgid "guestfs_add_domain_argv"
-msgstr ""
+msgstr "guestfs_add_domain_argv"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:114
@@ -6349,8 +6519,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:129
 msgid ""
-"This function is the equivalent of calling C<guestfs_add_drive_opts> with no "
-"optional parameters, so the disk is added writable, with the format being "
+"This function is the equivalent of calling C<guestfs_add_drive_opts> with no"
+" optional parameters, so the disk is added writable, with the format being "
 "detected automatically."
 msgstr ""
 
@@ -6402,9 +6572,9 @@ msgstr ""
 #: ../src/guestfs-actions.pod:165 ../fish/guestfish-actions.pod:107
 msgid ""
 "You don't necessarily need to be root when using libguestfs.  However you "
-"obviously do need sufficient permissions to access the filename for whatever "
-"operations you want to perform (ie. read access if you just want to read the "
-"image or write access if you want to modify the image)."
+"obviously do need sufficient permissions to access the filename for whatever"
+" operations you want to perform (ie. read access if you just want to read "
+"the image or write access if you want to modify the image)."
 msgstr ""
 
 #. type: textblock
@@ -6439,8 +6609,8 @@ msgstr "C<format>"
 #. type: textblock
 #: ../src/guestfs-actions.pod:185
 msgid ""
-"This forces the image format.  If you omit this (or use C<guestfs_add_drive> "
-"or C<guestfs_add_drive_ro>) then the format is automatically detected.  "
+"This forces the image format.  If you omit this (or use C<guestfs_add_drive>"
+" or C<guestfs_add_drive_ro>) then the format is automatically detected.  "
 "Possible formats include C<raw> and C<qcow2>."
 msgstr ""
 
@@ -6558,8 +6728,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:249
 msgid ""
-"This is the same as C<guestfs_add_drive_ro> but it allows you to specify the "
-"QEMU interface emulation to use at run time."
+"This is the same as C<guestfs_add_drive_ro> but it allows you to specify the"
+" QEMU interface emulation to use at run time."
 msgstr ""
 
 #. type: textblock
@@ -6635,9 +6805,9 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:302
 msgid ""
-"Close the current Augeas handle and free up any resources used by it.  After "
-"calling this, you have to call C<guestfs_aug_init> again before you can use "
-"any other Augeas functions."
+"Close the current Augeas handle and free up any resources used by it.  After"
+" calling this, you have to call C<guestfs_aug_init> again before you can use"
+" any other Augeas functions."
 msgstr ""
 
 #. type: textblock
@@ -6912,8 +7082,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:434 ../fish/guestfish-actions.pod:288
 msgid ""
-"Create a new sibling C<label> for C<path>, inserting it into the tree before "
-"or after C<path> (depending on the boolean flag C<before>)."
+"Create a new sibling C<label> for C<path>, inserting it into the tree before"
+" or after C<path> (depending on the boolean flag C<before>)."
 msgstr ""
 
 #. type: textblock
@@ -6993,9 +7163,9 @@ msgstr ""
 #: ../src/guestfs-actions.pod:7842 ../src/guestfs-actions.pod:7888
 #: ../src/guestfs-actions.pod:7907
 msgid ""
-"This function returns a NULL-terminated array of strings (like L<environ(3)"
-">), or NULL if there was an error.  I<The caller must free the strings and "
-"the array after use>."
+"This function returns a NULL-terminated array of strings (like "
+"L<environ(3)>), or NULL if there was an error.  I<The caller must free the "
+"strings and the array after use>."
 msgstr ""
 
 #. type: textblock
@@ -7173,9 +7343,9 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:566 ../fish/guestfish-actions.pod:368
 msgid ""
-"The argument C<groups> is a list of group names, eg: C<[\"inotify\", \"augeas"
-"\"]> would check for the availability of the Linux inotify functions and "
-"Augeas (configuration file editing) functions."
+"The argument C<groups> is a list of group names, eg: C<[\"inotify\", "
+"\"augeas\"]> would check for the availability of the Linux inotify functions"
+" and Augeas (configuration file editing) functions."
 msgstr ""
 
 #. type: textblock
@@ -7186,8 +7356,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:573 ../fish/guestfish-actions.pod:375
 msgid ""
-"It fails with an error if one or more of the requested groups is unavailable "
-"in the appliance."
+"It fails with an error if one or more of the requested groups is unavailable"
+" in the appliance."
 msgstr ""
 
 #. type: textblock
@@ -7482,8 +7652,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:734 ../fish/guestfish-actions.pod:489
 msgid ""
-"This returns the size of sectors on a block device.  Usually 512, but can be "
-"larger for modern devices."
+"This returns the size of sectors on a block device.  Usually 512, but can be"
+" larger for modern devices."
 msgstr ""
 
 #. type: textblock
@@ -7649,10 +7819,8 @@ msgstr ""
 #. type: =item
 #: ../src/guestfs-actions.pod:849 ../src/guestfs-actions.pod:5191
 #: ../fish/guestfish-actions.pod:559 ../fish/guestfish-actions.pod:3421
-#, fuzzy
-#| msgid "C<inspector>"
 msgid "C<size>"
-msgstr "C<inspector>"
+msgstr ""
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:851 ../fish/guestfish-actions.pod:561
@@ -7663,10 +7831,8 @@ msgstr ""
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:856 ../fish/guestfish-actions.pod:566
-#, fuzzy
-#| msgid "See L<guestfish(1)>."
 msgid "See also L<btrfs(8)>."
-msgstr "Див. L<guestfish(1)>."
+msgstr ""
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:860
@@ -7759,22 +7925,22 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:906 ../fish/guestfish-actions.pod:590
 msgid ""
-"Bug or feature? You decide: L<http://www.tuxera.com/community/ntfs-3g-faq/"
-"#posixfilenames1>"
+"Bug or feature? You decide: L<http://www.tuxera.com/community/ntfs-3g-"
+"faq/#posixfilenames1>"
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:909 ../fish/guestfish-actions.pod:593
 msgid ""
-"This function resolves the true case of each element in the path and returns "
-"the case-sensitive path."
+"This function resolves the true case of each element in the path and returns"
+" the case-sensitive path."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:912
 msgid ""
-"Thus C<guestfs_case_sensitive_path> (\"/Windows/System32\")  might return C<"
-"\"/WINDOWS/system32\"> (the exact return value would depend on details of "
+"Thus C<guestfs_case_sensitive_path> (\"/Windows/System32\")  might return "
+"C<\"/WINDOWS/system32\"> (the exact return value would depend on details of "
 "how the directories were originally created under Windows)."
 msgstr ""
 
@@ -8048,16 +8214,16 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:1029 ../fish/guestfish-actions.pod:681
 msgid ""
-"This command computes the checksums of all regular files in C<directory> and "
-"then emits a list of those checksums to the local output file C<sumsfile>."
+"This command computes the checksums of all regular files in C<directory> and"
+" then emits a list of those checksums to the local output file C<sumsfile>."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:1033 ../fish/guestfish-actions.pod:685
 msgid ""
 "This can be used for verifying the integrity of a virtual machine.  However "
-"to be properly secure you should pay attention to the output of the checksum "
-"command (it uses the ones from GNU coreutils).  In particular when the "
+"to be properly secure you should pay attention to the output of the checksum"
+" command (it uses the ones from GNU coreutils).  In particular when the "
 "filename is not printable, coreutils uses a special backslash syntax.  For "
 "more information, see the GNU coreutils info file."
 msgstr ""
@@ -8086,15 +8252,15 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:1052 ../fish/guestfish-actions.pod:699
 msgid ""
-"Change the mode (permissions) of C<path> to C<mode>.  Only numeric modes are "
-"supported."
+"Change the mode (permissions) of C<path> to C<mode>.  Only numeric modes are"
+" supported."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:1055 ../fish/guestfish-actions.pod:702
 msgid ""
-"I<Note>: When using this command from guestfish, C<mode> by default would be "
-"decimal, unless you prefix it with C<0> to get octal, ie. use C<0700> not "
+"I<Note>: When using this command from guestfish, C<mode> by default would be"
+" decimal, unless you prefix it with C<0> to get octal, ie. use C<0700> not "
 "C<700>."
 msgstr ""
 
@@ -8165,8 +8331,8 @@ msgstr ""
 #: ../src/guestfs-actions.pod:1094
 msgid ""
 "The single parameter is an argv-style list of arguments.  The first element "
-"is the name of the program to run.  Subsequent elements are parameters.  The "
-"list must be non-empty (ie. must contain a program name).  Note that the "
+"is the name of the program to run.  Subsequent elements are parameters.  The"
+" list must be non-empty (ie. must contain a program name).  Note that the "
 "command runs directly, and is I<not> invoked via the shell (see "
 "C<guestfs_sh>)."
 msgstr ""
@@ -8179,24 +8345,24 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:1104 ../fish/guestfish-actions.pod:737
 msgid ""
-"If the command returns a non-zero exit status, then this function returns an "
-"error message.  The error message string is the content of I<stderr> from "
+"If the command returns a non-zero exit status, then this function returns an"
+" error message.  The error message string is the content of I<stderr> from "
 "the command."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:1108 ../fish/guestfish-actions.pod:741
 msgid ""
-"The C<$PATH> environment variable will contain at least C</usr/bin> and C</"
-"bin>.  If you require a program from another location, you should provide "
-"the full path in the first parameter."
+"The C<$PATH> environment variable will contain at least C</usr/bin> and "
+"C</bin>.  If you require a program from another location, you should provide"
+" the full path in the first parameter."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:1113 ../fish/guestfish-actions.pod:746
 msgid ""
-"Shared libraries and data files required by the program must be available on "
-"filesystems which are mounted in the correct places.  It is the caller's "
+"Shared libraries and data files required by the program must be available on"
+" filesystems which are mounted in the correct places.  It is the caller's "
 "responsibility to ensure all filesystems that are needed are mounted at the "
 "right locations."
 msgstr ""
@@ -8225,8 +8391,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:1133
 msgid ""
-"This is the same as C<guestfs_command>, but splits the result into a list of "
-"lines."
+"This is the same as C<guestfs_command>, but splits the result into a list of"
+" lines."
 msgstr ""
 
 #. type: textblock
@@ -8309,8 +8475,8 @@ msgstr ""
 msgid ""
 "This long-running command can generate progress notification messages so "
 "that the caller can display a progress bar or indicator.  To receive these "
-"messages, the caller must register a progress event callback.  See L<guestfs"
-"(3)/GUESTFS_EVENT_PROGRESS>."
+"messages, the caller must register a progress event callback.  See "
+"L<guestfs(3)/GUESTFS_EVENT_PROGRESS>."
 msgstr ""
 
 #. type: textblock
@@ -8370,8 +8536,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:1211 ../fish/guestfish-actions.pod:801
 msgid ""
-"This copies a file or directory from C<src> to C<dest> recursively using the "
-"C<cp -a> command."
+"This copies a file or directory from C<src> to C<dest> recursively using the"
+" C<cp -a> command."
 msgstr ""
 
 #. type: =head2
@@ -8402,8 +8568,8 @@ msgstr ""
 #: ../src/guestfs-actions.pod:1230
 msgid ""
 "If the destination is a device, it must be as large or larger than the "
-"source file or device, otherwise the copy will fail.  This command cannot do "
-"partial copies (see C<guestfs_copy_size>)."
+"source file or device, otherwise the copy will fail.  This command cannot do"
+" partial copies (see C<guestfs_copy_size>)."
 msgstr ""
 
 #. type: =head2
@@ -8558,8 +8724,8 @@ msgstr ""
 #: ../src/guestfs-actions.pod:1328
 msgid ""
 "Note that there is no limit on the amount of data that can be downloaded "
-"with this call, unlike with C<guestfs_pread>, and this call always reads the "
-"full amount unless an error occurs."
+"with this call, unlike with C<guestfs_pread>, and this call always reads the"
+" full amount unless an error occurs."
 msgstr ""
 
 #. type: textblock
@@ -8662,8 +8828,8 @@ msgstr ""
 #: ../src/guestfs-actions.pod:1395 ../fish/guestfish-actions.pod:915
 msgid ""
 "This runs C<e2fsck -p -f device>, ie. runs the ext2/ext3 filesystem checker "
-"on C<device>, noninteractively (I<-p>), even if the filesystem appears to be "
-"clean (I<-f>)."
+"on C<device>, noninteractively (I<-p>), even if the filesystem appears to be"
+" clean (I<-f>)."
 msgstr ""
 
 #. type: textblock
@@ -8827,8 +8993,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:1484 ../fish/guestfish-actions.pod:966
 msgid ""
-"This returns C<true> if and only if there is a file, directory (or anything) "
-"with the given C<path> name."
+"This returns C<true> if and only if there is a file, directory (or anything)"
+" with the given C<path> name."
 msgstr ""
 
 #. type: textblock
@@ -9000,9 +9166,9 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:1600 ../fish/guestfish-actions.pod:1044
 msgid ""
-"The output depends on the output of the underlying L<file(1)> command and it "
-"can change in future in ways beyond our control.  In other words, the output "
-"is not guaranteed by the ABI."
+"The output depends on the output of the underlying L<file(1)> command and it"
+" can change in future in ways beyond our control.  In other words, the "
+"output is not guaranteed by the ABI."
 msgstr ""
 
 #. type: textblock
@@ -9260,8 +9426,8 @@ msgstr ""
 #: ../src/guestfs-actions.pod:1748 ../fish/guestfish-actions.pod:1170
 msgid ""
 "This command creates a new file called C<path>.  The initial content of the "
-"file is C<len> octets of C<c>, where C<c> must be a number in the range C<"
-"[0..255]>."
+"file is C<len> octets of C<c>, where C<c> must be a number in the range "
+"C<[0..255]>."
 msgstr ""
 
 #. type: textblock
@@ -9335,8 +9501,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:1799 ../fish/guestfish-actions.pod:1197
 msgid ""
-"This returns a list of strings I<without any prefix>.  Thus if the directory "
-"structure was:"
+"This returns a list of strings I<without any prefix>.  Thus if the directory"
+" structure was:"
 msgstr ""
 
 #. type: verbatim
@@ -9368,7 +9534,8 @@ msgstr ""
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:1814 ../fish/guestfish-actions.pod:1212
-msgid "If C<directory> is not a directory, then this command returns an error."
+msgid ""
+"If C<directory> is not a directory, then this command returns an error."
 msgstr ""
 
 #. type: textblock
@@ -9537,8 +9704,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:1927 ../fish/guestfish-actions.pod:1297
 msgid ""
-"A non-zero return code can mean \"success\", for example if errors have been "
-"corrected on the filesystem."
+"A non-zero return code can mean \"success\", for example if errors have been"
+" corrected on the filesystem."
 msgstr ""
 
 #. type: textblock
@@ -9586,8 +9753,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:1953
 msgid ""
-"This function returns a string which may be NULL.  There is no way to return "
-"an error from this function.  The string is owned by the guest handle and "
+"This function returns a string which may be NULL.  There is no way to return"
+" an error from this function.  The string is owned by the guest handle and "
 "must I<not> be freed."
 msgstr ""
 
@@ -9691,7 +9858,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:2005 ../fish/guestfish-actions.pod:1343
 msgid ""
-"This function is deprecated.  In new code, use the C<vfs_label> call instead."
+"This function is deprecated.  In new code, use the C<vfs_label> call "
+"instead."
 msgstr ""
 
 #. type: textblock
@@ -9751,8 +9919,8 @@ msgstr ""
 #: ../src/guestfs-actions.pod:2043
 msgid ""
 "If C<guestfs_set_memsize> was not called on this handle, and if "
-"C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
-"value for memsize."
+"C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default"
+" value for memsize."
 msgstr ""
 
 #. type: textblock
@@ -9838,17 +10006,12 @@ msgstr ""
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:2082
-#, fuzzy, no-wrap
-#| msgid ""
-#| " guestfs_h *g = guestfs_create ();\n"
-#| " \n"
+#, no-wrap
 msgid ""
 " int\n"
 " guestfs_get_pgroup (guestfs_h *g);\n"
 "\n"
 msgstr ""
-" guestfs_h *g = guestfs_create ();\n"
-" \n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:2085 ../fish/guestfish-actions.pod:1397
@@ -10039,8 +10202,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:2174
 msgid ""
-"Return the current umask.  By default the umask is C<022> unless it has been "
-"set by calling C<guestfs_umask>."
+"Return the current umask.  By default the umask is C<022> unless it has been"
+" set by calling C<guestfs_umask>."
 msgstr ""
 
 #. type: =head2
@@ -10126,8 +10289,8 @@ msgstr ""
 #: ../src/guestfs-actions.pod:2226 ../src/guestfs-actions.pod:3682
 #: ../fish/guestfish-actions.pod:1487 ../fish/guestfish-actions.pod:2514
 msgid ""
-"Extended attribute values are blobs of binary data.  If there is no extended "
-"attribute named C<name>, this returns an error."
+"Extended attribute values are blobs of binary data.  If there is no extended"
+" attribute named C<name>, this returns an error."
 msgstr ""
 
 #. type: textblock
@@ -10142,8 +10305,8 @@ msgstr ""
 #: ../src/guestfs-actions.pod:5809
 msgid ""
 "This function returns a buffer, or NULL on error.  The size of the returned "
-"buffer is written to C<*size_r>.  I<The caller must free the returned buffer "
-"after use>."
+"buffer is written to C<*size_r>.  I<The caller must free the returned buffer"
+" after use>."
 msgstr ""
 
 #. type: textblock
@@ -10188,8 +10351,8 @@ msgstr ""
 #: ../src/guestfs-actions.pod:2251 ../src/guestfs-actions.pod:3703
 #: ../src/guestfs-actions.pod:4391
 msgid ""
-"This function returns a C<struct guestfs_xattr_list *>, or NULL if there was "
-"an error.  I<The caller must call C<guestfs_free_xattr_list> after use>."
+"This function returns a C<struct guestfs_xattr_list *>, or NULL if there was"
+" an error.  I<The caller must call C<guestfs_free_xattr_list> after use>."
 msgstr ""
 
 #. type: textblock
@@ -10218,8 +10381,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:2263 ../fish/guestfish-actions.pod:1508
 msgid ""
-"This command searches for all the pathnames matching C<pattern> according to "
-"the wildcard expansion rules used by the shell."
+"This command searches for all the pathnames matching C<pattern> according to"
+" the wildcard expansion rules used by the shell."
 msgstr ""
 
 #. type: textblock
@@ -10231,8 +10394,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:2270 ../fish/guestfish-actions.pod:1515
 msgid ""
-"It is just a wrapper around the C L<glob(3)> function with flags C<GLOB_MARK|"
-"GLOB_BRACE>.  See that manual page for more details."
+"It is just a wrapper around the C L<glob(3)> function with flags "
+"C<GLOB_MARK|GLOB_BRACE>.  See that manual page for more details."
 msgstr ""
 
 #. type: textblock
@@ -10259,7 +10422,8 @@ msgstr ""
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:2287 ../fish/guestfish-actions.pod:1523
-msgid "This calls the external C<grep> program and returns the matching lines."
+msgid ""
+"This calls the external C<grep> program and returns the matching lines."
 msgstr ""
 
 #. type: =head2
@@ -10303,18 +10467,18 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:2325 ../fish/guestfish-actions.pod:1543
 msgid ""
-"This command installs GRUB (the Grand Unified Bootloader) on C<device>, with "
-"the root directory being C<root>."
+"This command installs GRUB (the Grand Unified Bootloader) on C<device>, with"
+" the root directory being C<root>."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:2328 ../fish/guestfish-actions.pod:1546
 msgid ""
-"Note: If grub-install reports the error \"No suitable drive was found in the "
-"generated device map.\" it may be that you need to create a C</boot/grub/"
-"device.map> file first that contains the mapping between grub device names "
-"and Linux device names.  It is usually sufficient to create a file "
-"containing:"
+"Note: If grub-install reports the error \"No suitable drive was found in the"
+" generated device map.\" it may be that you need to create a "
+"C</boot/grub/device.map> file first that contains the mapping between grub "
+"device names and Linux device names.  It is usually sufficient to create a "
+"file containing:"
 msgstr ""
 
 #. type: verbatim
@@ -10353,7 +10517,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:2349 ../fish/guestfish-actions.pod:1561
 msgid ""
-"This command returns up to the first 10 lines of a file as a list of strings."
+"This command returns up to the first 10 lines of a file as a list of "
+"strings."
 msgstr ""
 
 #. type: =head2
@@ -10448,8 +10613,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:2414 ../fish/guestfish-actions.pod:1600
 msgid ""
-"For example, in guestfish you could use the following command to examine the "
-"boot script (usually called C</init>)  contained in a Linux initrd or "
+"For example, in guestfish you could use the following command to examine the"
+" boot script (usually called C</init>)  contained in a Linux initrd or "
 "initramfs image:"
 msgstr ""
 
@@ -10554,9 +10719,9 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:2479 ../fish/guestfish-actions.pod:1643
 msgid ""
-"This closes the inotify handle which was previously opened by inotify_init.  "
-"It removes all watches, throws away any pending events, and deallocates all "
-"resources."
+"This closes the inotify handle which was previously opened by inotify_init."
+"  It removes all watches, throws away any pending events, and deallocates "
+"all resources."
 msgstr ""
 
 #. type: =head2
@@ -10576,8 +10741,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:2492
 msgid ""
-"This function is a helpful wrapper around C<guestfs_inotify_read> which just "
-"returns a list of pathnames of objects that were touched.  The returned "
+"This function is a helpful wrapper around C<guestfs_inotify_read> which just"
+" returns a list of pathnames of objects that were touched.  The returned "
 "pathnames are sorted and deduplicated."
 msgstr ""
 
@@ -10606,8 +10771,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:2512
 msgid ""
-"C<maxevents> is the maximum number of events which will be queued up between "
-"calls to C<guestfs_inotify_read> or C<guestfs_inotify_files>.  If this is "
+"C<maxevents> is the maximum number of events which will be queued up between"
+" calls to C<guestfs_inotify_read> or C<guestfs_inotify_files>.  If this is "
 "passed as C<0>, then the kernel (or previously set)  default is used.  For "
 "Linux 2.6.29 the default was 16384 events.  Beyond this limit, the kernel "
 "throws away events, but records the fact that it threw them away by setting "
@@ -10627,8 +10792,8 @@ msgstr ""
 #: ../src/guestfs-actions.pod:2528
 msgid ""
 "Queued up events should be read periodically by calling "
-"C<guestfs_inotify_read> (or C<guestfs_inotify_files> which is just a helpful "
-"wrapper around C<guestfs_inotify_read>).  If you don't read the events out "
+"C<guestfs_inotify_read> (or C<guestfs_inotify_files> which is just a helpful"
+" wrapper around C<guestfs_inotify_read>).  If you don't read the events out "
 "often enough then you risk the internal queue overflowing."
 msgstr ""
 
@@ -10676,10 +10841,10 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:2558 ../fish/guestfish-actions.pod:1704
 msgid ""
-"I<Note>: In order to make sure that all events have been read, you must call "
-"this function repeatedly until it returns an empty list.  The reason is that "
-"the call will read events up to the maximum appliance-to-host message size "
-"and leave remaining events in the queue."
+"I<Note>: In order to make sure that all events have been read, you must call"
+" this function repeatedly until it returns an empty list.  The reason is "
+"that the call will read events up to the maximum appliance-to-host message "
+"size and leave remaining events in the queue."
 msgstr ""
 
 #. type: textblock
@@ -10708,7 +10873,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:2576
 msgid ""
-"Remove a previously defined inotify watch.  See C<guestfs_inotify_add_watch>."
+"Remove a previously defined inotify watch.  See "
+"C<guestfs_inotify_add_watch>."
 msgstr ""
 
 #. type: =head2
@@ -10799,10 +10965,8 @@ msgstr "Arch Linux."
 
 #. type: =item
 #: ../src/guestfs-actions.pod:2620 ../fish/guestfish-actions.pod:1745
-#, fuzzy
-#| msgid "\"gentoo\""
 msgid "\"centos\""
-msgstr "\"gentoo\""
+msgstr ""
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:2622 ../fish/guestfish-actions.pod:1747
@@ -10896,10 +11060,8 @@ msgstr "\"rhel\""
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:2658 ../fish/guestfish-actions.pod:1783
-#, fuzzy
-#| msgid "Red Hat Enterprise Linux and some derivatives."
 msgid "Red Hat Enterprise Linux."
-msgstr "Red Hat Enterprise Linux та деякі з похідних дистрибутивів."
+msgstr ""
 
 #. type: =item
 #: ../src/guestfs-actions.pod:2660 ../fish/guestfish-actions.pod:1785
@@ -10952,8 +11114,8 @@ msgstr "\"windows\""
 #. type: textblock
 #: ../src/guestfs-actions.pod:2678 ../fish/guestfish-actions.pod:1803
 msgid ""
-"Windows does not have distributions.  This string is returned if the OS type "
-"is Windows."
+"Windows does not have distributions.  This string is returned if the OS type"
+" is Windows."
 msgstr ""
 
 #. type: textblock
@@ -10984,8 +11146,8 @@ msgstr ""
 #: ../src/guestfs-actions.pod:2699 ../fish/guestfish-actions.pod:1817
 msgid ""
 "This call is useful for Windows which uses a primitive system of assigning "
-"drive letters (like \"C:\") to partitions.  This inspection API examines the "
-"Windows Registry to find out how disks/partitions are mapped to drive "
+"drive letters (like \"C:\") to partitions.  This inspection API examines the"
+" Windows Registry to find out how disks/partitions are mapped to drive "
 "letters, and returns a hash table as in the example below:"
 msgstr ""
 
@@ -11012,8 +11174,8 @@ msgstr ""
 msgid ""
 "In future we may support other operating systems that also used drive "
 "letters, but the keys for those might not be case insensitive and might be "
-"longer than 1 character.  For example in OS-9, hard drives were named C<h0>, "
-"C<h1> etc."
+"longer than 1 character.  For example in OS-9, hard drives were named C<h0>,"
+" C<h1> etc."
 msgstr ""
 
 #. type: textblock
@@ -11071,16 +11233,16 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:2742 ../fish/guestfish-actions.pod:1850
 msgid ""
-"This returns a list of all the filesystems that we think are associated with "
-"this operating system.  This includes the root filesystem, other ordinary "
+"This returns a list of all the filesystems that we think are associated with"
+" this operating system.  This includes the root filesystem, other ordinary "
 "filesystems, and non-mounted devices like swap partitions."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:2747 ../fish/guestfish-actions.pod:1855
 msgid ""
-"In the case of a multi-boot virtual machine, it is possible for a filesystem "
-"to be shared between operating systems."
+"In the case of a multi-boot virtual machine, it is possible for a filesystem"
+" to be shared between operating systems."
 msgstr ""
 
 #. type: textblock
@@ -11215,8 +11377,8 @@ msgstr ""
 #: ../src/guestfs-actions.pod:2832 ../fish/guestfish-actions.pod:1908
 msgid ""
 "This function returns an icon corresponding to the inspected operating "
-"system.  The icon is returned as a buffer containing a PNG image (re-encoded "
-"to PNG if necessary)."
+"system.  The icon is returned as a buffer containing a PNG image (re-encoded"
+" to PNG if necessary)."
 msgstr ""
 
 #. type: textblock
@@ -11247,15 +11409,15 @@ msgstr ""
 msgid ""
 "If the optional C<highquality> boolean is true then only high quality icons "
 "are returned, which means only icons of high resolution with an alpha "
-"channel.  The default (false) is to return any icon we can, even if it is of "
-"substandard quality."
+"channel.  The default (false) is to return any icon we can, even if it is of"
+" substandard quality."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:2859 ../fish/guestfish-actions.pod:1935
 msgid ""
-"Unlike most other inspection API calls, the guest's disks must be mounted up "
-"before you call this, since it needs to read information from the guest "
+"Unlike most other inspection API calls, the guest's disks must be mounted up"
+" before you call this, since it needs to read information from the guest "
 "filesystem during the call."
 msgstr ""
 
@@ -11264,15 +11426,15 @@ msgstr ""
 msgid ""
 "B<Security:> The icon data comes from the untrusted guest, and should be "
 "treated with caution.  PNG files have been known to contain exploits.  "
-"Ensure that libpng (or other relevant libraries) are fully up to date before "
-"trying to process or display the icon."
+"Ensure that libpng (or other relevant libraries) are fully up to date before"
+" trying to process or display the icon."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:2873 ../fish/guestfish-actions.pod:1949
 msgid ""
-"The PNG image returned can be any size.  It might not be square.  Libguestfs "
-"tries to return the largest, highest quality icon available.  The "
+"The PNG image returned can be any size.  It might not be square.  Libguestfs"
+" tries to return the largest, highest quality icon available.  The "
 "application must scale the icon to the required size."
 msgstr ""
 
@@ -11366,11 +11528,11 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:2931 ../fish/guestfish-actions.pod:1977
 msgid ""
-"Windows uses a consistent versioning scheme which is I<not> reflected in the "
-"popular public names used by the operating system.  Notably the operating "
+"Windows uses a consistent versioning scheme which is I<not> reflected in the"
+" popular public names used by the operating system.  Notably the operating "
 "system known as \"Windows 7\" is really version 6.1 (ie. major = 6, minor = "
-"1).  You can find out the real versions corresponding to releases of Windows "
-"by consulting Wikipedia or MSDN."
+"1).  You can find out the real versions corresponding to releases of Windows"
+" by consulting Wikipedia or MSDN."
 msgstr ""
 
 #. type: textblock
@@ -11427,10 +11589,10 @@ msgstr ""
 msgid ""
 "This returns a hash of where we think the filesystems associated with this "
 "operating system should be mounted.  Callers should note that this is at "
-"best an educated guess made by reading configuration files such as C</etc/"
-"fstab>.  I<In particular note> that this may return filesystems which are "
-"non-existent or not mountable and callers should be prepared to handle or "
-"ignore failures if they try to mount them."
+"best an educated guess made by reading configuration files such as "
+"C</etc/fstab>.  I<In particular note> that this may return filesystems which"
+" are non-existent or not mountable and callers should be prepared to handle "
+"or ignore failures if they try to mount them."
 msgstr ""
 
 #. type: textblock
@@ -11483,8 +11645,8 @@ msgstr ""
 msgid ""
 "This function and C<guestfs_inspect_get_package_management> return the "
 "package format and package management tool used by the inspected operating "
-"system.  For example for Fedora these functions would return C<rpm> (package "
-"format) and C<yum> (package management)."
+"system.  For example for Fedora these functions would return C<rpm> (package"
+" format) and C<yum> (package management)."
 msgstr ""
 
 #. type: textblock
@@ -11535,8 +11697,8 @@ msgstr ""
 #: ../src/guestfs-actions.pod:3042 ../fish/guestfish-actions.pod:2059
 msgid ""
 "This returns the string C<unknown> if we could not determine the package "
-"management tool I<or> if the operating system does not have a real packaging "
-"system (eg. Windows)."
+"management tool I<or> if the operating system does not have a real packaging"
+" system (eg. Windows)."
 msgstr ""
 
 #. type: textblock
@@ -11566,8 +11728,8 @@ msgstr ""
 #: ../src/guestfs-actions.pod:3064 ../fish/guestfish-actions.pod:2074
 msgid ""
 "This returns the product name of the inspected operating system.  The "
-"product name is generally some freeform string which can be displayed to the "
-"user, but should not be parsed by programs."
+"product name is generally some freeform string which can be displayed to the"
+" user, but should not be parsed by programs."
 msgstr ""
 
 #. type: textblock
@@ -11594,19 +11756,17 @@ msgstr ""
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:3085 ../fish/guestfish-actions.pod:2088
-#, fuzzy
-#| msgid "This is an installed operating system."
 msgid "This returns the product variant of the inspected operating system."
-msgstr "Це встановлена операційна система."
+msgstr ""
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:3088 ../fish/guestfish-actions.pod:2091
 msgid ""
-"For Windows guests, this returns the contents of the Registry key C<HKLM"
-"\\Software\\Microsoft\\Windows NT\\CurrentVersion> C<InstallationType> which "
-"is usually a string such as C<Client> or C<Server> (other values are "
-"possible).  This can be used to distinguish consumer and enterprise versions "
-"of Windows that have the same version number (for example, Windows 7 and "
+"For Windows guests, this returns the contents of the Registry key "
+"C<HKLM\\Software\\Microsoft\\Windows NT\\CurrentVersion> C<InstallationType>"
+" which is usually a string such as C<Client> or C<Server> (other values are "
+"possible).  This can be used to distinguish consumer and enterprise versions"
+" of Windows that have the same version number (for example, Windows 7 and "
 "Windows 2008 Server are both version 6.1, but the former is C<Client> and "
 "the latter is C<Server>)."
 msgstr ""
@@ -11778,8 +11938,9 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:3201 ../fish/guestfish-actions.pod:2176
 msgid ""
-"This call assumes that the guest is Windows and that the systemroot could be "
-"determined by inspection.  If this is not the case then an error is returned."
+"This call assumes that the guest is Windows and that the systemroot could be"
+" determined by inspection.  If this is not the case then an error is "
+"returned."
 msgstr ""
 
 #. type: textblock
@@ -11878,13 +12039,13 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:3270
 msgid ""
-"I<Note:> This call works differently from other parts of the inspection "
-"API.  You have to call C<guestfs_inspect_os>, then "
+"I<Note:> This call works differently from other parts of the inspection API."
+"  You have to call C<guestfs_inspect_os>, then "
 "C<guestfs_inspect_get_mountpoints>, then mount up the disks, before calling "
 "this.  Listing applications is a significantly more difficult operation "
 "which requires access to the full filesystem.  Also note that unlike the "
-"other C<guestfs_inspect_get_*> calls which are just returning data cached in "
-"the libguestfs handle, this call actually reads parts of the mounted "
+"other C<guestfs_inspect_get_*> calls which are just returning data cached in"
+" the libguestfs handle, this call actually reads parts of the mounted "
 "filesystems during the call."
 msgstr ""
 
@@ -11927,8 +12088,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:3297 ../fish/guestfish-actions.pod:2247
 msgid ""
-"If unavailable this is returned as an empty string C<\"\">.  Callers needing "
-"to display something can use C<app_name> instead."
+"If unavailable this is returned as an empty string C<\"\">.  Callers needing"
+" to display something can use C<app_name> instead."
 msgstr ""
 
 #. type: =item
@@ -12024,7 +12185,7 @@ msgstr ""
 #. type: =item
 #: ../src/guestfs-actions.pod:3341 ../fish/guestfish-actions.pod:2291
 msgid "C<app_source_package>"
-msgstr ""
+msgstr "C<app_source_package>"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:3343 ../fish/guestfish-actions.pod:2293
@@ -12036,7 +12197,7 @@ msgstr ""
 #. type: =item
 #: ../src/guestfs-actions.pod:3346 ../fish/guestfish-actions.pod:2296
 msgid "C<app_summary>"
-msgstr ""
+msgstr "C<app_summary>"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:3348 ../fish/guestfish-actions.pod:2298
@@ -12048,7 +12209,7 @@ msgstr ""
 #. type: =item
 #: ../src/guestfs-actions.pod:3351 ../fish/guestfish-actions.pod:2301
 msgid "C<app_description>"
-msgstr ""
+msgstr "C<app_description>"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:3353 ../fish/guestfish-actions.pod:2303
@@ -12061,8 +12222,8 @@ msgstr ""
 #: ../src/guestfs-actions.pod:3360
 msgid ""
 "This function returns a C<struct guestfs_application_list *>, or NULL if "
-"there was an error.  I<The caller must call C<guestfs_free_application_list> "
-"after use>."
+"there was an error.  I<The caller must call C<guestfs_free_application_list>"
+" after use>."
 msgstr ""
 
 #. type: textblock
@@ -12101,34 +12262,34 @@ msgstr ""
 #: ../src/guestfs-actions.pod:3377 ../fish/guestfish-actions.pod:2320
 msgid ""
 "If one operating system was found, then this returns a list with a single "
-"element, which is the name of the root filesystem of this operating system.  "
-"It is also possible for this function to return a list containing more than "
-"one element, indicating a dual-boot or multi-boot virtual machine, with each "
-"element being the root filesystem of one of the operating systems."
+"element, which is the name of the root filesystem of this operating system."
+"  It is also possible for this function to return a list containing more "
+"than one element, indicating a dual-boot or multi-boot virtual machine, with"
+" each element being the root filesystem of one of the operating systems."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:3384
 msgid ""
 "You can pass the root string(s) returned to other C<guestfs_inspect_get_*> "
-"functions in order to query further information about each operating system, "
-"such as the name and version."
+"functions in order to query further information about each operating system,"
+" such as the name and version."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:3389
 msgid ""
-"This function uses other libguestfs features such as C<guestfs_mount_ro> and "
-"C<guestfs_umount_all> in order to mount and unmount filesystems and look at "
-"the contents.  This should be called with no disks currently mounted.  The "
+"This function uses other libguestfs features such as C<guestfs_mount_ro> and"
+" C<guestfs_umount_all> in order to mount and unmount filesystems and look at"
+" the contents.  This should be called with no disks currently mounted.  The "
 "function may also use Augeas, so any existing Augeas handle will be closed."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:3395 ../fish/guestfish-actions.pod:2338
 msgid ""
-"This function cannot decrypt encrypted disks.  The caller must do that first "
-"(supplying the necessary keys) if the disk is encrypted."
+"This function cannot decrypt encrypted disks.  The caller must do that first"
+" (supplying the necessary keys) if the disk is encrypted."
 msgstr ""
 
 #. type: textblock
@@ -12301,7 +12462,8 @@ msgstr ""
 #: ../src/guestfs-actions.pod:3504 ../fish/guestfish-actions.pod:2405
 msgid ""
 "This returns C<true> if and only if there is a regular file with the given "
-"C<path> name.  Note that it returns false for other objects like directories."
+"C<path> name.  Note that it returns false for other objects like "
+"directories."
 msgstr ""
 
 #. type: =head2
@@ -12556,8 +12718,9 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:3671 ../fish/guestfish-actions.pod:2503
 msgid ""
-"Get a single extended attribute from file C<path> named C<name>.  If C<path> "
-"is a symlink, then this call returns an extended attribute from the symlink."
+"Get a single extended attribute from file C<path> named C<name>.  If C<path>"
+" is a symlink, then this call returns an extended attribute from the "
+"symlink."
 msgstr ""
 
 #. type: textblock
@@ -12583,8 +12746,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:3699
 msgid ""
-"This is the same as C<guestfs_getxattrs>, but if C<path> is a symbolic link, "
-"then it returns the extended attributes of the link itself."
+"This is the same as C<guestfs_getxattrs>, but if C<path> is a symbolic link,"
+" then it returns the extended attributes of the link itself."
 msgstr ""
 
 #. type: =head2
@@ -12714,8 +12877,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:3778 ../fish/guestfish-actions.pod:2574
 msgid ""
-"The value can have the special value \"unknown\", meaning the content of the "
-"device is undetermined or empty.  \"swap\" means a Linux swap partition."
+"The value can have the special value \"unknown\", meaning the content of the"
+" device is undetermined or empty.  \"swap\" means a Linux swap partition."
 msgstr ""
 
 #. type: textblock
@@ -12733,7 +12896,8 @@ msgid ""
 "partitions are returned in the list.  Also this command does not check that "
 "each filesystem found is valid and mountable, and some filesystems might be "
 "mountable but require special options.  Filesystems may not all belong to a "
-"single logical operating system (use C<guestfs_inspect_os> to look for OSes)."
+"single logical operating system (use C<guestfs_inspect_os> to look for "
+"OSes)."
 msgstr ""
 
 #. type: textblock
@@ -12744,7 +12908,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs-actions.pod:3802
 msgid "guestfs_list_partitions"
-msgstr ""
+msgstr "guestfs_list_partitions"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:3804
@@ -12754,6 +12918,9 @@ msgid ""
 " guestfs_list_partitions (guestfs_h *g);\n"
 "\n"
 msgstr ""
+" char **\n"
+" guestfs_list_partitions (guestfs_h *g);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:3807 ../fish/guestfish-actions.pod:2594
@@ -12775,7 +12942,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs-actions.pod:3822
 msgid "guestfs_ll"
-msgstr ""
+msgstr "guestfs_ll"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:3824
@@ -12786,6 +12953,10 @@ msgid ""
 "             const char *directory);\n"
 "\n"
 msgstr ""
+" char *\n"
+" guestfs_ll (guestfs_h *g,\n"
+"             const char *directory);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:3828 ../fish/guestfish-actions.pod:2607
@@ -12804,7 +12975,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs-actions.pod:3839
 msgid "guestfs_ln"
-msgstr ""
+msgstr "guestfs_ln"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:3841
@@ -12816,6 +12987,11 @@ msgid ""
 "             const char *linkname);\n"
 "\n"
 msgstr ""
+" int\n"
+" guestfs_ln (guestfs_h *g,\n"
+"             const char *target,\n"
+"             const char *linkname);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:3846 ../fish/guestfish-actions.pod:2617
@@ -12825,7 +13001,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs-actions.pod:3852
 msgid "guestfs_ln_f"
-msgstr ""
+msgstr "guestfs_ln_f"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:3854
@@ -12837,6 +13013,11 @@ msgid ""
 "               const char *linkname);\n"
 "\n"
 msgstr ""
+" int\n"
+" guestfs_ln_f (guestfs_h *g,\n"
+"               const char *target,\n"
+"               const char *linkname);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:3859 ../fish/guestfish-actions.pod:2623
@@ -12848,7 +13029,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs-actions.pod:3866
 msgid "guestfs_ln_s"
-msgstr ""
+msgstr "guestfs_ln_s"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:3868
@@ -12860,6 +13041,11 @@ msgid ""
 "               const char *linkname);\n"
 "\n"
 msgstr ""
+" int\n"
+" guestfs_ln_s (guestfs_h *g,\n"
+"               const char *target,\n"
+"               const char *linkname);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:3873 ../fish/guestfish-actions.pod:2630
@@ -12869,7 +13055,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs-actions.pod:3879
 msgid "guestfs_ln_sf"
-msgstr ""
+msgstr "guestfs_ln_sf"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:3881
@@ -12881,6 +13067,11 @@ msgid ""
 "                const char *linkname);\n"
 "\n"
 msgstr ""
+" int\n"
+" guestfs_ln_sf (guestfs_h *g,\n"
+"                const char *target,\n"
+"                const char *linkname);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:3886 ../fish/guestfish-actions.pod:2636
@@ -12892,7 +13083,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs-actions.pod:3893
 msgid "guestfs_lremovexattr"
-msgstr ""
+msgstr "guestfs_lremovexattr"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:3895
@@ -12904,6 +13095,11 @@ msgid ""
 "                       const char *path);\n"
 "\n"
 msgstr ""
+" int\n"
+" guestfs_lremovexattr (guestfs_h *g,\n"
+"                       const char *xattr,\n"
+"                       const char *path);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:3900
@@ -12915,7 +13111,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs-actions.pod:3908
 msgid "guestfs_ls"
-msgstr ""
+msgstr "guestfs_ls"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:3910
@@ -12926,12 +13122,17 @@ msgid ""
 "             const char *directory);\n"
 "\n"
 msgstr ""
+" char **\n"
+" guestfs_ls (guestfs_h *g,\n"
+"             const char *directory);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:3914 ../fish/guestfish-actions.pod:2651
 msgid ""
 "List the files in C<directory> (relative to the root directory, there is no "
-"cwd).  The '.' and '..' entries are not returned, but hidden files are shown."
+"cwd).  The '.' and '..' entries are not returned, but hidden files are "
+"shown."
 msgstr ""
 
 #. type: textblock
@@ -12944,7 +13145,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs-actions.pod:3927
 msgid "guestfs_lsetxattr"
-msgstr ""
+msgstr "guestfs_lsetxattr"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:3929
@@ -12958,6 +13159,13 @@ msgid ""
 "                    const char *path);\n"
 "\n"
 msgstr ""
+" int\n"
+" guestfs_lsetxattr (guestfs_h *g,\n"
+"                    const char *xattr,\n"
+"                    const char *val,\n"
+"                    int vallen,\n"
+"                    const char *path);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:3936
@@ -12969,7 +13177,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs-actions.pod:3944
 msgid "guestfs_lstat"
-msgstr ""
+msgstr "guestfs_lstat"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:3946
@@ -12980,6 +13188,10 @@ msgid ""
 "                const char *path);\n"
 "\n"
 msgstr ""
+" struct guestfs_stat *\n"
+" guestfs_lstat (guestfs_h *g,\n"
+"                const char *path);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:3950 ../src/guestfs-actions.pod:6721
@@ -13010,12 +13222,12 @@ msgstr ""
 #: ../src/guestfs-actions.pod:3962 ../src/guestfs-actions.pod:6729
 #: ../src/guestfs-actions.pod:6747 ../src/guestfs-actions.pod:7128
 msgid "(Added in 0.9.2)"
-msgstr ""
+msgstr "(Додано у 0.9.2)"
 
 #. type: =head2
 #: ../src/guestfs-actions.pod:3964
 msgid "guestfs_lstatlist"
-msgstr ""
+msgstr "guestfs_lstatlist"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:3966
@@ -13027,6 +13239,11 @@ msgid ""
 "                    char *const *names);\n"
 "\n"
 msgstr ""
+" struct guestfs_stat_list *\n"
+" guestfs_lstatlist (guestfs_h *g,\n"
+"                    const char *path,\n"
+"                    char *const *names);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:3971
@@ -13047,8 +13264,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:3980
 msgid ""
-"This call is intended for programs that want to efficiently list a directory "
-"contents without making many round-trips.  See also C<guestfs_lxattrlist> "
+"This call is intended for programs that want to efficiently list a directory"
+" contents without making many round-trips.  See also C<guestfs_lxattrlist> "
 "for a similarly efficient call for getting extended attributes.  Very long "
 "directory listings might cause the protocol message size to be exceeded, "
 "causing this call to fail.  The caller must split up such requests into "
@@ -13065,7 +13282,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs-actions.pod:3994
 msgid "guestfs_luks_add_key"
-msgstr ""
+msgstr "guestfs_luks_add_key"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:3996
@@ -13079,20 +13296,27 @@ msgid ""
 "                       int keyslot);\n"
 "\n"
 msgstr ""
+" int\n"
+" guestfs_luks_add_key (guestfs_h *g,\n"
+"                       const char *device,\n"
+"                       const char *key,\n"
+"                       const char *newkey,\n"
+"                       int keyslot);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4003 ../fish/guestfish-actions.pod:2703
 msgid ""
 "This command adds a new key on LUKS device C<device>.  C<key> is any "
-"existing key, and is used to access the device.  C<newkey> is the new key to "
-"add.  C<keyslot> is the key slot that will be replaced."
+"existing key, and is used to access the device.  C<newkey> is the new key to"
+" add.  C<keyslot> is the key slot that will be replaced."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4008
 msgid ""
-"Note that if C<keyslot> already contains a key, then this command will "
-"fail.  You have to use C<guestfs_luks_kill_slot> first to remove that key."
+"Note that if C<keyslot> already contains a key, then this command will fail."
+"  You have to use C<guestfs_luks_kill_slot> first to remove that key."
 msgstr ""
 
 #. type: textblock
@@ -13109,12 +13333,12 @@ msgstr ""
 #: ../src/guestfs-actions.pod:4018 ../src/guestfs-actions.pod:4058
 #: ../src/guestfs-actions.pod:4081 ../src/guestfs-actions.pod:4101
 msgid "(Added in 1.5.2)"
-msgstr ""
+msgstr "(Додано у 1.5.2)"
 
 #. type: =head2
 #: ../src/guestfs-actions.pod:4020
 msgid "guestfs_luks_close"
-msgstr ""
+msgstr "guestfs_luks_close"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:4022
@@ -13125,14 +13349,18 @@ msgid ""
 "                     const char *device);\n"
 "\n"
 msgstr ""
+" int\n"
+" guestfs_luks_close (guestfs_h *g,\n"
+"                     const char *device);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4026
 msgid ""
 "This closes a LUKS device that was created earlier by C<guestfs_luks_open> "
-"or C<guestfs_luks_open_ro>.  The C<device> parameter must be the name of the "
-"LUKS mapping device (ie. C</dev/mapper/mapname>) and I<not> the name of the "
-"underlying block device."
+"or C<guestfs_luks_open_ro>.  The C<device> parameter must be the name of the"
+" LUKS mapping device (ie. C</dev/mapper/mapname>) and I<not> the name of the"
+" underlying block device."
 msgstr ""
 
 #. type: textblock
@@ -13140,12 +13368,12 @@ msgstr ""
 #: ../src/guestfs-actions.pod:4155 ../src/guestfs-actions.pod:4205
 #: ../src/guestfs-actions.pod:4253
 msgid "(Added in 1.5.1)"
-msgstr ""
+msgstr "(Додано у 1.5.1)"
 
 #. type: =head2
 #: ../src/guestfs-actions.pod:4036
 msgid "guestfs_luks_format"
-msgstr ""
+msgstr "guestfs_luks_format"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:4038
@@ -13158,6 +13386,12 @@ msgid ""
 "                      int keyslot);\n"
 "\n"
 msgstr ""
+" int\n"
+" guestfs_luks_format (guestfs_h *g,\n"
+"                      const char *device,\n"
+"                      const char *key,\n"
+"                      int keyslot);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4044 ../fish/guestfish-actions.pod:2729
@@ -13178,14 +13412,14 @@ msgstr ""
 #: ../fish/guestfish-actions.pod:4343 ../fish/guestfish-actions.pod:4366
 #: ../fish/guestfish-actions.pod:4388 ../fish/guestfish-actions.pod:5126
 msgid ""
-"B<This command is dangerous.  Without careful use you can easily destroy all "
-"your data>."
+"B<This command is dangerous.  Without careful use you can easily destroy all"
+" your data>."
 msgstr ""
 
 #. type: =head2
 #: ../src/guestfs-actions.pod:4060
 msgid "guestfs_luks_format_cipher"
-msgstr ""
+msgstr "guestfs_luks_format_cipher"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:4062
@@ -13199,18 +13433,25 @@ msgid ""
 "                             const char *cipher);\n"
 "\n"
 msgstr ""
+" int\n"
+" guestfs_luks_format_cipher (guestfs_h *g,\n"
+"                             const char *device,\n"
+"                             const char *key,\n"
+"                             int keyslot,\n"
+"                             const char *cipher);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4069
 msgid ""
-"This command is the same as C<guestfs_luks_format> but it also allows you to "
-"set the C<cipher> used."
+"This command is the same as C<guestfs_luks_format> but it also allows you to"
+" set the C<cipher> used."
 msgstr ""
 
 #. type: =head2
 #: ../src/guestfs-actions.pod:4083
 msgid "guestfs_luks_kill_slot"
-msgstr ""
+msgstr "guestfs_luks_kill_slot"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:4085
@@ -13223,6 +13464,12 @@ msgid ""
 "                         int keyslot);\n"
 "\n"
 msgstr ""
+" int\n"
+" guestfs_luks_kill_slot (guestfs_h *g,\n"
+"                         const char *device,\n"
+"                         const char *key,\n"
+"                         int keyslot);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4091 ../fish/guestfish-actions.pod:2757
@@ -13234,7 +13481,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs-actions.pod:4103
 msgid "guestfs_luks_open"
-msgstr ""
+msgstr "guestfs_luks_open"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:4105
@@ -13247,6 +13494,12 @@ msgid ""
 "                    const char *mapname);\n"
 "\n"
 msgstr ""
+" int\n"
+" guestfs_luks_open (guestfs_h *g,\n"
+"                    const char *device,\n"
+"                    const char *key,\n"
+"                    const char *mapname);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4111 ../fish/guestfish-actions.pod:2768
@@ -13291,7 +13544,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs-actions.pod:4138
 msgid "guestfs_luks_open_ro"
-msgstr ""
+msgstr "guestfs_luks_open_ro"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:4140
@@ -13304,6 +13557,12 @@ msgid ""
 "                       const char *mapname);\n"
 "\n"
 msgstr ""
+" int\n"
+" guestfs_luks_open_ro (guestfs_h *g,\n"
+"                       const char *device,\n"
+"                       const char *key,\n"
+"                       const char *mapname);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4146
@@ -13315,7 +13574,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs-actions.pod:4157
 msgid "guestfs_lvcreate"
-msgstr ""
+msgstr "guestfs_lvcreate"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:4159
@@ -13328,6 +13587,12 @@ msgid ""
 "                   int mbytes);\n"
 "\n"
 msgstr ""
+" int\n"
+" guestfs_lvcreate (guestfs_h *g,\n"
+"                   const char *logvol,\n"
+"                   const char *volgroup,\n"
+"                   int mbytes);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4165 ../fish/guestfish-actions.pod:2804
@@ -13339,7 +13604,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs-actions.pod:4172
 msgid "guestfs_lvm_canonical_lv_name"
-msgstr ""
+msgstr "guestfs_lvm_canonical_lv_name"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:4174
@@ -13350,20 +13615,24 @@ msgid ""
 "                                const char *lvname);\n"
 "\n"
 msgstr ""
+" char *\n"
+" guestfs_lvm_canonical_lv_name (guestfs_h *g,\n"
+"                                const char *lvname);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4178 ../fish/guestfish-actions.pod:2811
 msgid ""
 "This converts alternative naming schemes for LVs that you might find to the "
-"canonical name.  For example, C</dev/mapper/VG-LV> is converted to C</dev/VG/"
-"LV>."
+"canonical name.  For example, C</dev/mapper/VG-LV> is converted to "
+"C</dev/VG/LV>."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4182 ../fish/guestfish-actions.pod:2815
 msgid ""
-"This command returns an error if the C<lvname> parameter does not refer to a "
-"logical volume."
+"This command returns an error if the C<lvname> parameter does not refer to a"
+" logical volume."
 msgstr ""
 
 #. type: textblock
@@ -13374,12 +13643,12 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:4190
 msgid "(Added in 1.5.24)"
-msgstr ""
+msgstr "(Додано у 1.5.24)"
 
 #. type: =head2
 #: ../src/guestfs-actions.pod:4192
 msgid "guestfs_lvm_clear_filter"
-msgstr ""
+msgstr "guestfs_lvm_clear_filter"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:4194
@@ -13389,6 +13658,9 @@ msgid ""
 " guestfs_lvm_clear_filter (guestfs_h *g);\n"
 "\n"
 msgstr ""
+" int\n"
+" guestfs_lvm_clear_filter (guestfs_h *g);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4197
@@ -13407,7 +13679,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs-actions.pod:4207
 msgid "guestfs_lvm_remove_all"
-msgstr ""
+msgstr "guestfs_lvm_remove_all"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:4209
@@ -13417,6 +13689,9 @@ msgid ""
 " guestfs_lvm_remove_all (guestfs_h *g);\n"
 "\n"
 msgstr ""
+" int\n"
+" guestfs_lvm_remove_all (guestfs_h *g);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4212 ../fish/guestfish-actions.pod:2834
@@ -13428,7 +13703,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs-actions.pod:4222
 msgid "guestfs_lvm_set_filter"
-msgstr ""
+msgstr "guestfs_lvm_set_filter"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:4224
@@ -13439,12 +13714,16 @@ msgid ""
 "                         char *const *devices);\n"
 "\n"
 msgstr ""
+" int\n"
+" guestfs_lvm_set_filter (guestfs_h *g,\n"
+"                         char *const *devices);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4228 ../fish/guestfish-actions.pod:2844
 msgid ""
-"This sets the LVM device filter so that LVM will only be able to \"see\" the "
-"block devices in the list C<devices>, and will ignore all other attached "
+"This sets the LVM device filter so that LVM will only be able to \"see\" the"
+" block devices in the list C<devices>, and will ignore all other attached "
 "block devices."
 msgstr ""
 
@@ -13452,10 +13731,10 @@ msgstr ""
 #: ../src/guestfs-actions.pod:4232 ../fish/guestfish-actions.pod:2848
 msgid ""
 "Where disk image(s) contain duplicate PVs or VGs, this command is useful to "
-"get LVM to ignore the duplicates, otherwise LVM can get confused.  Note also "
-"there are two types of duplication possible: either cloned PVs/VGs which "
-"have identical UUIDs; or VGs that are not cloned but just happen to have the "
-"same name.  In normal operation you cannot create this situation, but you "
+"get LVM to ignore the duplicates, otherwise LVM can get confused.  Note also"
+" there are two types of duplication possible: either cloned PVs/VGs which "
+"have identical UUIDs; or VGs that are not cloned but just happen to have the"
+" same name.  In normal operation you cannot create this situation, but you "
 "can do it outside LVM, eg.  by cloning disk images or by bit twiddling "
 "inside the LVM metadata."
 msgstr ""
@@ -13475,7 +13754,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs-actions.pod:4255
 msgid "guestfs_lvremove"
-msgstr ""
+msgstr "guestfs_lvremove"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:4257
@@ -13486,6 +13765,10 @@ msgid ""
 "                   const char *device);\n"
 "\n"
 msgstr ""
+" int\n"
+" guestfs_lvremove (guestfs_h *g,\n"
+"                   const char *device);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4261 ../fish/guestfish-actions.pod:2871
@@ -13497,20 +13780,20 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:4264 ../fish/guestfish-actions.pod:2874
 msgid ""
-"You can also remove all LVs in a volume group by specifying the VG name, C</"
-"dev/VG>."
+"You can also remove all LVs in a volume group by specifying the VG name, "
+"C</dev/VG>."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4269 ../src/guestfs-actions.pod:5666
 #: ../src/guestfs-actions.pod:7498
 msgid "(Added in 1.0.13)"
-msgstr ""
+msgstr "(Додано у 1.0.13)"
 
 #. type: =head2
 #: ../src/guestfs-actions.pod:4271
 msgid "guestfs_lvrename"
-msgstr ""
+msgstr "guestfs_lvrename"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:4273
@@ -13522,6 +13805,11 @@ msgid ""
 "                   const char *newlogvol);\n"
 "\n"
 msgstr ""
+" int\n"
+" guestfs_lvrename (guestfs_h *g,\n"
+"                   const char *logvol,\n"
+"                   const char *newlogvol);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4278 ../fish/guestfish-actions.pod:2881
@@ -13531,12 +13819,12 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:4282 ../src/guestfs-actions.pod:7511
 msgid "(Added in 1.0.83)"
-msgstr ""
+msgstr "(Додано у 1.0.83)"
 
 #. type: =head2
 #: ../src/guestfs-actions.pod:4284
 msgid "guestfs_lvresize"
-msgstr ""
+msgstr "guestfs_lvresize"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:4286
@@ -13548,6 +13836,11 @@ msgid ""
 "                   int mbytes);\n"
 "\n"
 msgstr ""
+" int\n"
+" guestfs_lvresize (guestfs_h *g,\n"
+"                   const char *device,\n"
+"                   int mbytes);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4291 ../fish/guestfish-actions.pod:2887
@@ -13559,7 +13852,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs-actions.pod:4299
 msgid "guestfs_lvresize_free"
-msgstr ""
+msgstr "guestfs_lvresize_free"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:4301
@@ -13571,25 +13864,30 @@ msgid ""
 "                        int percent);\n"
 "\n"
 msgstr ""
+" int\n"
+" guestfs_lvresize_free (guestfs_h *g,\n"
+"                        const char *lv,\n"
+"                        int percent);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4306 ../fish/guestfish-actions.pod:2895
 msgid ""
-"This expands an existing logical volume C<lv> so that it fills C<pc>% of the "
-"remaining free space in the volume group.  Commonly you would call this with "
-"pc = 100 which expands the logical volume as much as possible, using all "
-"remaining free space in the volume group."
+"This expands an existing logical volume C<lv> so that it fills C<pc>% of the"
+" remaining free space in the volume group.  Commonly you would call this "
+"with pc = 100 which expands the logical volume as much as possible, using "
+"all remaining free space in the volume group."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4314
 msgid "(Added in 1.3.3)"
-msgstr ""
+msgstr "(Додано у 1.3.3)"
 
 #. type: =head2
 #: ../src/guestfs-actions.pod:4316
 msgid "guestfs_lvs"
-msgstr ""
+msgstr "guestfs_lvs"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:4318
@@ -13599,19 +13897,22 @@ msgid ""
 " guestfs_lvs (guestfs_h *g);\n"
 "\n"
 msgstr ""
+" char **\n"
+" guestfs_lvs (guestfs_h *g);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4321 ../fish/guestfish-actions.pod:2905
 msgid ""
-"List all the logical volumes detected.  This is the equivalent of the L<lvs"
-"(8)> command."
+"List all the logical volumes detected.  This is the equivalent of the "
+"L<lvs(8)> command."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4324 ../fish/guestfish-actions.pod:2908
 msgid ""
-"This returns a list of the logical volume device names (eg. C</dev/"
-"VolGroup00/LogVol00>)."
+"This returns a list of the logical volume device names (eg. "
+"C</dev/VolGroup00/LogVol00>)."
 msgstr ""
 
 #. type: textblock
@@ -13622,7 +13923,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs-actions.pod:4335
 msgid "guestfs_lvs_full"
-msgstr ""
+msgstr "guestfs_lvs_full"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:4337
@@ -13632,25 +13933,29 @@ msgid ""
 " guestfs_lvs_full (guestfs_h *g);\n"
 "\n"
 msgstr ""
+" struct guestfs_lvm_lv_list *\n"
+" guestfs_lvs_full (guestfs_h *g);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4340 ../fish/guestfish-actions.pod:2917
 msgid ""
-"List all the logical volumes detected.  This is the equivalent of the L<lvs"
-"(8)> command.  The \"full\" version includes all fields."
+"List all the logical volumes detected.  This is the equivalent of the "
+"L<lvs(8)> command.  The \"full\" version includes all fields."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4343
 msgid ""
 "This function returns a C<struct guestfs_lvm_lv_list *>, or NULL if there "
-"was an error.  I<The caller must call C<guestfs_free_lvm_lv_list> after use>."
+"was an error.  I<The caller must call C<guestfs_free_lvm_lv_list> after "
+"use>."
 msgstr ""
 
 #. type: =head2
 #: ../src/guestfs-actions.pod:4349
 msgid "guestfs_lvuuid"
-msgstr ""
+msgstr "guestfs_lvuuid"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:4351
@@ -13661,6 +13966,10 @@ msgid ""
 "                 const char *device);\n"
 "\n"
 msgstr ""
+" char *\n"
+" guestfs_lvuuid (guestfs_h *g,\n"
+"                 const char *device);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4355 ../fish/guestfish-actions.pod:2924
@@ -13670,7 +13979,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs-actions.pod:4362
 msgid "guestfs_lxattrlist"
-msgstr ""
+msgstr "guestfs_lxattrlist"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:4364
@@ -13682,42 +13991,48 @@ msgid ""
 "                     char *const *names);\n"
 "\n"
 msgstr ""
+" struct guestfs_xattr_list *\n"
+" guestfs_lxattrlist (guestfs_h *g,\n"
+"                     const char *path,\n"
+"                     char *const *names);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4369 ../fish/guestfish-actions.pod:2930
 msgid ""
-"This call allows you to get the extended attributes of multiple files, where "
-"all files are in the directory C<path>.  C<names> is the list of files from "
-"this directory."
+"This call allows you to get the extended attributes of multiple files, where"
+" all files are in the directory C<path>.  C<names> is the list of files from"
+" this directory."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4373 ../fish/guestfish-actions.pod:2934
 msgid ""
 "On return you get a flat list of xattr structs which must be interpreted "
-"sequentially.  The first xattr struct always has a zero-length C<attrname>.  "
-"C<attrval> in this struct is zero-length to indicate there was an error "
+"sequentially.  The first xattr struct always has a zero-length C<attrname>."
+"  C<attrval> in this struct is zero-length to indicate there was an error "
 "doing C<lgetxattr> for this file, I<or> is a C string which is a decimal "
-"number (the number of following attributes for this file, which could be C<"
-"\"0\">).  Then after the first xattr struct are the zero or more attributes "
-"for the first named file.  This repeats for the second and subsequent files."
+"number (the number of following attributes for this file, which could be "
+"C<\"0\">).  Then after the first xattr struct are the zero or more "
+"attributes for the first named file.  This repeats for the second and "
+"subsequent files."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4383
 msgid ""
-"This call is intended for programs that want to efficiently list a directory "
-"contents without making many round-trips.  See also C<guestfs_lstatlist> for "
-"a similarly efficient call for getting standard stats.  Very long directory "
-"listings might cause the protocol message size to be exceeded, causing this "
-"call to fail.  The caller must split up such requests into smaller groups of "
-"names."
+"This call is intended for programs that want to efficiently list a directory"
+" contents without making many round-trips.  See also C<guestfs_lstatlist> "
+"for a similarly efficient call for getting standard stats.  Very long "
+"directory listings might cause the protocol message size to be exceeded, "
+"causing this call to fail.  The caller must split up such requests into "
+"smaller groups of names."
 msgstr ""
 
 #. type: =head2
 #: ../src/guestfs-actions.pod:4397
 msgid "guestfs_mkdir"
-msgstr ""
+msgstr "guestfs_mkdir"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:4399
@@ -13728,6 +14043,10 @@ msgid ""
 "                const char *path);\n"
 "\n"
 msgstr ""
+" int\n"
+" guestfs_mkdir (guestfs_h *g,\n"
+"                const char *path);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4403 ../fish/guestfish-actions.pod:2956
@@ -13737,7 +14056,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs-actions.pod:4409
 msgid "guestfs_mkdir_mode"
-msgstr ""
+msgstr "guestfs_mkdir_mode"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:4411
@@ -13749,6 +14068,11 @@ msgid ""
 "                     int mode);\n"
 "\n"
 msgstr ""
+" int\n"
+" guestfs_mkdir_mode (guestfs_h *g,\n"
+"                     const char *path,\n"
+"                     int mode);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4416 ../fish/guestfish-actions.pod:2962
@@ -13773,7 +14097,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs-actions.pod:4429
 msgid "guestfs_mkdir_p"
-msgstr ""
+msgstr "guestfs_mkdir_p"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:4431
@@ -13784,6 +14108,10 @@ msgid ""
 "                  const char *path);\n"
 "\n"
 msgstr ""
+" int\n"
+" guestfs_mkdir_p (guestfs_h *g,\n"
+"                  const char *path);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4435 ../fish/guestfish-actions.pod:2975
@@ -13795,7 +14123,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs-actions.pod:4442
 msgid "guestfs_mkdtemp"
-msgstr ""
+msgstr "guestfs_mkdtemp"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:4444
@@ -13806,6 +14134,10 @@ msgid ""
 "                  const char *template);\n"
 "\n"
 msgstr ""
+" char *\n"
+" guestfs_mkdtemp (guestfs_h *g,\n"
+"                  const char *template);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4448 ../fish/guestfish-actions.pod:2982
@@ -13818,8 +14150,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:4453 ../fish/guestfish-actions.pod:2987
 msgid ""
-"For example: \"/tmp/myprogXXXXXX\" or \"/Temp/myprogXXXXXX\", the second one "
-"being suitable for Windows filesystems."
+"For example: \"/tmp/myprogXXXXXX\" or \"/Temp/myprogXXXXXX\", the second one"
+" being suitable for Windows filesystems."
 msgstr ""
 
 #. type: textblock
@@ -13829,7 +14161,8 @@ msgstr ""
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4459 ../fish/guestfish-actions.pod:2993
-msgid "The temporary directory is created with mode 0700 and is owned by root."
+msgid ""
+"The temporary directory is created with mode 0700 and is owned by root."
 msgstr ""
 
 #. type: textblock
@@ -13847,7 +14180,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs-actions.pod:4472
 msgid "guestfs_mke2fs_J"
-msgstr ""
+msgstr "guestfs_mke2fs_J"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:4474
@@ -13861,12 +14194,19 @@ msgid ""
 "                   const char *journal);\n"
 "\n"
 msgstr ""
+" int\n"
+" guestfs_mke2fs_J (guestfs_h *g,\n"
+"                   const char *fstype,\n"
+"                   int blocksize,\n"
+"                   const char *device,\n"
+"                   const char *journal);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4481 ../fish/guestfish-actions.pod:3005
 msgid ""
-"This creates an ext2/3/4 filesystem on C<device> with an external journal on "
-"C<journal>.  It is equivalent to the command:"
+"This creates an ext2/3/4 filesystem on C<device> with an external journal on"
+" C<journal>.  It is equivalent to the command:"
 msgstr ""
 
 #. type: verbatim
@@ -13876,6 +14216,8 @@ msgid ""
 " mke2fs -t fstype -b blocksize -J device=<journal> <device>\n"
 "\n"
 msgstr ""
+" mke2fs -t fstype -b blocksize -J device=<журнал> <пристрій>\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4487
@@ -13888,12 +14230,12 @@ msgstr ""
 #: ../src/guestfs-actions.pod:4557 ../src/guestfs-actions.pod:4571
 #: ../src/guestfs-actions.pod:4630 ../src/guestfs-actions.pod:4907
 msgid "(Added in 1.0.68)"
-msgstr ""
+msgstr "(Додано у 1.0.68)"
 
 #. type: =head2
 #: ../src/guestfs-actions.pod:4493
 msgid "guestfs_mke2fs_JL"
-msgstr ""
+msgstr "guestfs_mke2fs_JL"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:4495
@@ -13907,12 +14249,19 @@ msgid ""
 "                    const char *label);\n"
 "\n"
 msgstr ""
+" int\n"
+" guestfs_mke2fs_JL (guestfs_h *g,\n"
+"                    const char *fstype,\n"
+"                    int blocksize,\n"
+"                    const char *device,\n"
+"                    const char *label);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4502 ../fish/guestfish-actions.pod:3017
 msgid ""
-"This creates an ext2/3/4 filesystem on C<device> with an external journal on "
-"the journal labeled C<label>."
+"This creates an ext2/3/4 filesystem on C<device> with an external journal on"
+" the journal labeled C<label>."
 msgstr ""
 
 #. type: textblock
@@ -13923,7 +14272,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs-actions.pod:4511
 msgid "guestfs_mke2fs_JU"
-msgstr ""
+msgstr "guestfs_mke2fs_JU"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:4513
@@ -13937,12 +14286,19 @@ msgid ""
 "                    const char *uuid);\n"
 "\n"
 msgstr ""
+" int\n"
+" guestfs_mke2fs_JU (guestfs_h *g,\n"
+"                    const char *fstype,\n"
+"                    int blocksize,\n"
+"                    const char *device,\n"
+"                    const char *uuid);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4520 ../fish/guestfish-actions.pod:3026
 msgid ""
-"This creates an ext2/3/4 filesystem on C<device> with an external journal on "
-"the journal with UUID C<uuid>."
+"This creates an ext2/3/4 filesystem on C<device> with an external journal on"
+" the journal with UUID C<uuid>."
 msgstr ""
 
 #. type: textblock
@@ -13953,7 +14309,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs-actions.pod:4529
 msgid "guestfs_mke2journal"
-msgstr ""
+msgstr "guestfs_mke2journal"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:4531
@@ -13965,12 +14321,17 @@ msgid ""
 "                      const char *device);\n"
 "\n"
 msgstr ""
+" int\n"
+" guestfs_mke2journal (guestfs_h *g,\n"
+"                      int blocksize,\n"
+"                      const char *device);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4536 ../fish/guestfish-actions.pod:3035
 msgid ""
-"This creates an ext2 external journal on C<device>.  It is equivalent to the "
-"command:"
+"This creates an ext2 external journal on C<device>.  It is equivalent to the"
+" command:"
 msgstr ""
 
 #. type: verbatim
@@ -13984,7 +14345,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs-actions.pod:4545
 msgid "guestfs_mke2journal_L"
-msgstr ""
+msgstr "guestfs_mke2journal_L"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:4547
@@ -13997,16 +14358,23 @@ msgid ""
 "                        const char *device);\n"
 "\n"
 msgstr ""
+" int\n"
+" guestfs_mke2journal_L (guestfs_h *g,\n"
+"                        int blocksize,\n"
+"                        const char *label,\n"
+"                        const char *device);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4553 ../fish/guestfish-actions.pod:3044
-msgid "This creates an ext2 external journal on C<device> with label C<label>."
+msgid ""
+"This creates an ext2 external journal on C<device> with label C<label>."
 msgstr ""
 
 #. type: =head2
 #: ../src/guestfs-actions.pod:4559
 msgid "guestfs_mke2journal_U"
-msgstr ""
+msgstr "guestfs_mke2journal_U"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:4561
@@ -14019,6 +14387,12 @@ msgid ""
 "                        const char *device);\n"
 "\n"
 msgstr ""
+" int\n"
+" guestfs_mke2journal_U (guestfs_h *g,\n"
+"                        int blocksize,\n"
+"                        const char *uuid,\n"
+"                        const char *device);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4567 ../fish/guestfish-actions.pod:3050
@@ -14028,7 +14402,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs-actions.pod:4573
 msgid "guestfs_mkfifo"
-msgstr ""
+msgstr "guestfs_mkfifo"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:4575
@@ -14040,6 +14414,11 @@ msgid ""
 "                 const char *path);\n"
 "\n"
 msgstr ""
+" int\n"
+" guestfs_mkfifo (guestfs_h *g,\n"
+"                 int mode,\n"
+"                 const char *path);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4580
@@ -14051,7 +14430,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs-actions.pod:4590
 msgid "guestfs_mkfs"
-msgstr ""
+msgstr "guestfs_mkfs"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:4592
@@ -14063,6 +14442,11 @@ msgid ""
 "               const char *device);\n"
 "\n"
 msgstr ""
+" int\n"
+" guestfs_mkfs (guestfs_h *g,\n"
+"               const char *fstype,\n"
+"               const char *device);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4597 ../fish/guestfish-actions.pod:3066
@@ -14074,7 +14458,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs-actions.pod:4605
 msgid "guestfs_mkfs_b"
-msgstr ""
+msgstr "guestfs_mkfs_b"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:4607
@@ -14087,13 +14471,19 @@ msgid ""
 "                 const char *device);\n"
 "\n"
 msgstr ""
+" int\n"
+" guestfs_mkfs_b (guestfs_h *g,\n"
+"                 const char *fstype,\n"
+"                 int blocksize,\n"
+"                 const char *device);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4613
 msgid ""
 "This call is similar to C<guestfs_mkfs>, but it allows you to control the "
-"block size of the resulting filesystem.  Supported block sizes depend on the "
-"filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
+"block size of the resulting filesystem.  Supported block sizes depend on the"
+" filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
 msgstr ""
 
 #. type: textblock
@@ -14107,13 +14497,14 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:4623 ../fish/guestfish-actions.pod:3082
 msgid ""
-"This function is deprecated.  In new code, use the C<mkfs_opts> call instead."
+"This function is deprecated.  In new code, use the C<mkfs_opts> call "
+"instead."
 msgstr ""
 
 #. type: =head2
 #: ../src/guestfs-actions.pod:4632
 msgid "guestfs_mkfs_opts"
-msgstr ""
+msgstr "guestfs_mkfs_opts"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:4634
@@ -14126,6 +14517,12 @@ msgid ""
 "                    ...);\n"
 "\n"
 msgstr ""
+" int\n"
+" guestfs_mkfs_opts (guestfs_h *g,\n"
+"                    const char *fstype,\n"
+"                    const char *device,\n"
+"                    ...);\n"
+"\n"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:4645
@@ -14148,7 +14545,7 @@ msgstr ""
 #. type: =item
 #: ../src/guestfs-actions.pod:4657 ../fish/guestfish-actions.pod:3100
 msgid "C<blocksize>"
-msgstr ""
+msgstr "C<blocksize>"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4659 ../fish/guestfish-actions.pod:3102
@@ -14166,7 +14563,7 @@ msgstr ""
 #. type: =item
 #: ../src/guestfs-actions.pod:4668 ../fish/guestfish-actions.pod:3111
 msgid "C<features>"
-msgstr ""
+msgstr "C<features>"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4670 ../fish/guestfish-actions.pod:3113
@@ -14183,16 +14580,14 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:4676 ../fish/guestfish-actions.pod:3119
 msgid ""
-"You cannot use this optional parameter with the C<gfs> or C<gfs2> filesystem "
-"type."
+"You cannot use this optional parameter with the C<gfs> or C<gfs2> filesystem"
+" type."
 msgstr ""
 
 #. type: =item
 #: ../src/guestfs-actions.pod:4679 ../fish/guestfish-actions.pod:3122
-#, fuzzy
-#| msgid "C<inspector>"
 msgid "C<inode>"
-msgstr "C<inspector>"
+msgstr ""
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4681 ../fish/guestfish-actions.pod:3124
@@ -14203,10 +14598,8 @@ msgstr ""
 
 #. type: =item
 #: ../src/guestfs-actions.pod:4684 ../fish/guestfish-actions.pod:3127
-#, fuzzy
-#| msgid "C<inspector>"
 msgid "C<sectorsize>"
-msgstr "C<inspector>"
+msgstr ""
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4686 ../fish/guestfish-actions.pod:3129
@@ -14218,12 +14611,12 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:4693
 msgid "(Added in 1.7.19)"
-msgstr ""
+msgstr "(Додано у 1.7.19)"
 
 #. type: =head2
 #: ../src/guestfs-actions.pod:4695
 msgid "guestfs_mkfs_opts_va"
-msgstr ""
+msgstr "guestfs_mkfs_opts_va"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:4697
@@ -14236,6 +14629,12 @@ msgid ""
 "                       va_list args);\n"
 "\n"
 msgstr ""
+" int\n"
+" guestfs_mkfs_opts_va (guestfs_h *g,\n"
+"                       const char *fstype,\n"
+"                       const char *device,\n"
+"                       va_list args);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4703
@@ -14245,7 +14644,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs-actions.pod:4707
 msgid "guestfs_mkfs_opts_argv"
-msgstr ""
+msgstr "guestfs_mkfs_opts_argv"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:4709
@@ -14258,6 +14657,12 @@ msgid ""
 "                         const struct guestfs_mkfs_opts_argv *optargs);\n"
 "\n"
 msgstr ""
+" int\n"
+" guestfs_mkfs_opts_argv (guestfs_h *g,\n"
+"                         const char *fstype,\n"
+"                         const char *device,\n"
+"                         const struct guestfs_mkfs_opts_argv *optargs);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4715
@@ -14267,7 +14672,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs-actions.pod:4719
 msgid "guestfs_mkmountpoint"
-msgstr ""
+msgstr "guestfs_mkmountpoint"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:4721
@@ -14278,6 +14683,10 @@ msgid ""
 "                       const char *exemptpath);\n"
 "\n"
 msgstr ""
+" int\n"
+" guestfs_mkmountpoint (guestfs_h *g,\n"
+"                       const char *exemptpath);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4725
@@ -14290,8 +14699,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:4729 ../fish/guestfish-actions.pod:3144
 msgid ""
-"These calls are I<only> necessary in some very limited circumstances, mainly "
-"the case where you want to mount a mix of unrelated and/or read-only "
+"These calls are I<only> necessary in some very limited circumstances, mainly"
+" the case where you want to mount a mix of unrelated and/or read-only "
 "filesystems together."
 msgstr ""
 
@@ -14317,6 +14726,15 @@ msgid ""
 " mount-loop /sqsh/LiveOS/ext3fs.img /ext3fs\n"
 "\n"
 msgstr ""
+" add-ro Fedora-11-i686-Live.iso\n"
+" run\n"
+" mkmountpoint /cd\n"
+" mkmountpoint /sqsh\n"
+" mkmountpoint /ext3fs\n"
+" mount /dev/sda /cd\n"
+" mount-loop /cd/LiveOS/squashfs.img /sqsh\n"
+" mount-loop /sqsh/LiveOS/ext3fs.img /ext3fs\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4747 ../fish/guestfish-actions.pod:3162
@@ -14350,15 +14768,15 @@ msgstr ""
 #: ../src/guestfs-actions.pod:4760
 msgid ""
 "Autosync [see C<guestfs_set_autosync>, this is set by default on handles] "
-"can cause C<guestfs_umount_all> to be called when the handle is closed which "
-"can also trigger these issues."
+"can cause C<guestfs_umount_all> to be called when the handle is closed which"
+" can also trigger these issues."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4766 ../src/guestfs-actions.pod:5082
 #: ../src/guestfs-actions.pod:6086
 msgid "(Added in 1.0.62)"
-msgstr ""
+msgstr "(Додано у 1.0.62)"
 
 #. type: =head2
 #: ../src/guestfs-actions.pod:4768
@@ -14381,7 +14799,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:4777 ../fish/guestfish-actions.pod:3183
 msgid ""
-"This call creates block or character special devices, or named pipes (FIFOs)."
+"This call creates block or character special devices, or named pipes "
+"(FIFOs)."
 msgstr ""
 
 #. type: textblock
@@ -14399,8 +14818,8 @@ msgid ""
 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
 "regular file).  These constants are available in the standard Linux header "
 "files, or you can use C<guestfs_mknod_b>, C<guestfs_mknod_c> or "
-"C<guestfs_mkfifo> which are wrappers around this command which bitwise OR in "
-"the appropriate constant for you."
+"C<guestfs_mkfifo> which are wrappers around this command which bitwise OR in"
+" the appropriate constant for you."
 msgstr ""
 
 #. type: =head2
@@ -14499,9 +14918,9 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:4858 ../fish/guestfish-actions.pod:3233
 msgid ""
-"Note that you cannot attach a swap label to a block device (eg. C</dev/"
-"sda>), just to a partition.  This appears to be a limitation of the kernel "
-"or swap tools."
+"Note that you cannot attach a swap label to a block device (eg. "
+"C</dev/sda>), just to a partition.  This appears to be a limitation of the "
+"kernel or swap tools."
 msgstr ""
 
 #. type: =head2
@@ -14543,7 +14962,7 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:4885 ../fish/guestfish-actions.pod:3247
 msgid "Create a swap file."
-msgstr ""
+msgstr "Створити файл резервної пам’яті."
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4887
@@ -14598,8 +15017,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:4916 ../fish/guestfish-actions.pod:3265
 msgid ""
-"Mount a guest disk at a position in the filesystem.  Block devices are named "
-"C</dev/sda>, C</dev/sdb> and so on, as they were added to the guest.  If "
+"Mount a guest disk at a position in the filesystem.  Block devices are named"
+" C</dev/sda>, C</dev/sdb> and so on, as they were added to the guest.  If "
 "those block devices contain partitions, they will have the usual names (eg. "
 "C</dev/sda1>).  Also LVM C</dev/VG/LV>-style names can be used."
 msgstr ""
@@ -14608,15 +15027,15 @@ msgstr ""
 #: ../src/guestfs-actions.pod:4922 ../fish/guestfish-actions.pod:3271
 msgid ""
 "The rules are the same as for L<mount(2)>: A filesystem must first be "
-"mounted on C</> before others can be mounted.  Other filesystems can only be "
-"mounted on directories which already exist."
+"mounted on C</> before others can be mounted.  Other filesystems can only be"
+" mounted on directories which already exist."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:4927 ../fish/guestfish-actions.pod:3276
 msgid ""
-"The mounted filesystem is writable, if we have sufficient permissions on the "
-"underlying device."
+"The mounted filesystem is writable, if we have sufficient permissions on the"
+" underlying device."
 msgstr ""
 
 #. type: textblock
@@ -14624,11 +15043,12 @@ msgstr ""
 msgid ""
 "B<Important note:> When you use this call, the filesystem options C<sync> "
 "and C<noatime> are set implicitly.  This was originally done because we "
-"thought it would improve reliability, but it turns out that I<-o sync> has a "
-"very large negative performance impact and negligible effect on "
+"thought it would improve reliability, but it turns out that I<-o sync> has a"
+" very large negative performance impact and negligible effect on "
 "reliability.  Therefore we recommend that you avoid using C<guestfs_mount> "
-"in any code that needs performance, and instead use C<guestfs_mount_options> "
-"(use an empty string for the first parameter if you don't want any options)."
+"in any code that needs performance, and instead use C<guestfs_mount_options>"
+" (use an empty string for the first parameter if you don't want any "
+"options)."
 msgstr ""
 
 #. type: textblock
@@ -14828,8 +15248,8 @@ msgstr ""
 #: ../src/guestfs-actions.pod:5059
 msgid ""
 "This is the same as the C<guestfs_mount> command, but it allows you to set "
-"both the mount options and the vfstype as for the L<mount(8)> I<-o> and I<-"
-"t> flags."
+"both the mount options and the vfstype as for the L<mount(8)> I<-o> and "
+"I<-t> flags."
 msgstr ""
 
 #. type: =head2
@@ -14871,8 +15291,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:5089 ../fish/guestfish-actions.pod:3356
 msgid ""
-"This returns the list of currently mounted filesystems.  It returns the list "
-"of devices (eg. C</dev/sda1>, C</dev/VG/LV>)."
+"This returns the list of currently mounted filesystems.  It returns the list"
+" of devices (eg. C</dev/sda1>, C</dev/VG/LV>)."
 msgstr ""
 
 #. type: textblock
@@ -14943,8 +15363,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:5131 ../fish/guestfish-actions.pod:3382
 msgid ""
-"The return value is an integer which C<0> if the operation would succeed, or "
-"some non-zero value documented in the L<ntfs-3g.probe(8)> manual page."
+"The return value is an integer which C<0> if the operation would succeed, or"
+" some non-zero value documented in the L<ntfs-3g.probe(8)> manual page."
 msgstr ""
 
 #. type: textblock
@@ -14978,8 +15398,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:5148 ../fish/guestfish-actions.pod:3393
 msgid ""
-"I<Note:> After the resize operation, the filesystem is marked as requiring a "
-"consistency check (for safety).  You have to boot into Windows to perform "
+"I<Note:> After the resize operation, the filesystem is marked as requiring a"
+" consistency check (for safety).  You have to boot into Windows to perform "
 "this check and clear this condition.  Furthermore, ntfsresize refuses to "
 "resize filesystems which have been marked in this way.  So in effect it is "
 "not possible to call ntfsresize multiple times on a single filesystem "
@@ -14989,10 +15409,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:5156 ../src/guestfs-actions.pod:5210
 #: ../fish/guestfish-actions.pod:3401 ../fish/guestfish-actions.pod:3440
-#, fuzzy
-#| msgid "See L<guestfish(1)>."
 msgid "See also L<ntfsresize(8)>."
-msgstr "Див. L<guestfish(1)>."
+msgstr ""
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:5160 ../src/guestfs-actions.pod:5250
@@ -15036,10 +15454,8 @@ msgstr ""
 
 #. type: =item
 #: ../src/guestfs-actions.pod:5196 ../fish/guestfish-actions.pod:3426
-#, fuzzy
-#| msgid "C<format>"
 msgid "C<force>"
-msgstr "C<format>"
+msgstr ""
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:5198 ../fish/guestfish-actions.pod:3428
@@ -15159,8 +15575,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:5271 ../fish/guestfish-actions.pod:3465
 msgid ""
-"The C<prlogex> parameter is the type of partition.  Normally you should pass "
-"C<p> or C<primary> here, but MBR partition tables also support C<l> (or "
+"The C<prlogex> parameter is the type of partition.  Normally you should pass"
+" C<p> or C<primary> here, but MBR partition tables also support C<l> (or "
 "C<logical>) and C<e> (or C<extended>) partition types."
 msgstr ""
 
@@ -15242,8 +15658,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:5315
 msgid ""
-"C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
-"possible values are described in C<guestfs_part_init>."
+"C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other"
+" possible values are described in C<guestfs_part_init>."
 msgstr ""
 
 #. type: =head2
@@ -15300,8 +15716,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:5351 ../src/guestfs-actions.pod:5527
 msgid ""
-"Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
-"undefined results for other partition table types (see "
+"Note that only MBR (old DOS-style) partitions have type bytes.  You will get"
+" undefined results for other partition table types (see "
 "C<guestfs_part_get_parttype>)."
 msgstr ""
 
@@ -15355,8 +15771,8 @@ msgstr ""
 #: ../src/guestfs-actions.pod:5385 ../fish/guestfish-actions.pod:3537
 msgid ""
 "This creates an empty partition table on C<device> of one of the partition "
-"types listed below.  Usually C<parttype> should be either C<msdos> or C<gpt> "
-"(for large disks)."
+"types listed below.  Usually C<parttype> should be either C<msdos> or C<gpt>"
+" (for large disks)."
 msgstr ""
 
 #. type: textblock
@@ -15398,8 +15814,8 @@ msgstr ""
 #: ../src/guestfs-actions.pod:5406 ../fish/guestfish-actions.pod:3558
 msgid ""
 "The standard PC \"Master Boot Record\" (MBR) format used by MS-DOS and "
-"Windows.  This partition type will B<only> work for device sizes up to 2 "
-"TB.  For large disks we recommend using C<gpt>."
+"Windows.  This partition type will B<only> work for device sizes up to 2 TB."
+"  For large disks we recommend using C<gpt>."
 msgstr ""
 
 #. type: textblock
@@ -15411,87 +15827,88 @@ msgstr ""
 #. type: =item
 #: ../src/guestfs-actions.pod:5418 ../fish/guestfish-actions.pod:3570
 msgid "B<aix>"
-msgstr ""
+msgstr "B<aix>"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:5420 ../fish/guestfish-actions.pod:3572
 msgid "AIX disk labels."
-msgstr ""
+msgstr "Мітки дисків AIX."
 
 #. type: =item
 #: ../src/guestfs-actions.pod:5422 ../fish/guestfish-actions.pod:3574
 msgid "B<amiga> | B<rdb>"
-msgstr ""
+msgstr "B<amiga> | B<rdb>"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:5424 ../fish/guestfish-actions.pod:3576
 msgid "Amiga \"Rigid Disk Block\" format."
-msgstr ""
+msgstr "Формат \"Rigid Disk Block\" Amiga."
 
 #. type: =item
 #: ../src/guestfs-actions.pod:5426 ../fish/guestfish-actions.pod:3578
 msgid "B<bsd>"
-msgstr ""
+msgstr "B<bsd>"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:5428 ../fish/guestfish-actions.pod:3580
 msgid "BSD disk labels."
-msgstr ""
+msgstr "Мітки дисків BSD."
 
 #. type: =item
 #: ../src/guestfs-actions.pod:5430 ../fish/guestfish-actions.pod:3582
 msgid "B<dasd>"
-msgstr ""
+msgstr "B<dasd>"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:5432 ../fish/guestfish-actions.pod:3584
 msgid "DASD, used on IBM mainframes."
-msgstr ""
+msgstr "DASD, використовувалися у мейнфреймах IBM."
 
 #. type: =item
 #: ../src/guestfs-actions.pod:5434 ../fish/guestfish-actions.pod:3586
 msgid "B<dvh>"
-msgstr ""
+msgstr "B<dvh>"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:5436 ../fish/guestfish-actions.pod:3588
 msgid "MIPS/SGI volumes."
-msgstr ""
+msgstr "Томи MIPS/SGI."
 
 #. type: =item
 #: ../src/guestfs-actions.pod:5438 ../fish/guestfish-actions.pod:3590
 msgid "B<mac>"
-msgstr ""
+msgstr "B<mac>"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:5440 ../fish/guestfish-actions.pod:3592
 msgid "Old Mac partition format.  Modern Macs use C<gpt>."
 msgstr ""
+"Старий формат розділів Mac. Сучасні системи Mac використовують C<gpt>."
 
 #. type: =item
 #: ../src/guestfs-actions.pod:5442 ../fish/guestfish-actions.pod:3594
 msgid "B<pc98>"
-msgstr ""
+msgstr "B<pc98>"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:5444 ../fish/guestfish-actions.pod:3596
 msgid "NEC PC-98 format, common in Japan apparently."
-msgstr ""
+msgstr "Формат NEC PC-98, поширений у Японії."
 
 #. type: =item
 #: ../src/guestfs-actions.pod:5446 ../fish/guestfish-actions.pod:3598
 msgid "B<sun>"
-msgstr ""
+msgstr "B<sun>"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:5448 ../fish/guestfish-actions.pod:3600
 msgid "Sun disk labels."
-msgstr ""
+msgstr "Мітки дисків Sun."
 
 #. type: =head2
 #: ../src/guestfs-actions.pod:5456
 msgid "guestfs_part_list"
-msgstr ""
+msgstr "guestfs_part_list"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:5458
@@ -15502,12 +15919,16 @@ msgid ""
 "                    const char *device);\n"
 "\n"
 msgstr ""
+" struct guestfs_partition_list *\n"
+" guestfs_part_list (guestfs_h *g,\n"
+"                    const char *device);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:5462 ../fish/guestfish-actions.pod:3608
 msgid ""
-"This command parses the partition table on C<device> and returns the list of "
-"partitions found."
+"This command parses the partition table on C<device> and returns the list of"
+" partitions found."
 msgstr ""
 
 #. type: textblock
@@ -15518,7 +15939,7 @@ msgstr ""
 #. type: =item
 #: ../src/guestfs-actions.pod:5469 ../fish/guestfish-actions.pod:3615
 msgid "B<part_num>"
-msgstr ""
+msgstr "B<part_num>"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:5471 ../fish/guestfish-actions.pod:3617
@@ -15528,7 +15949,7 @@ msgstr ""
 #. type: =item
 #: ../src/guestfs-actions.pod:5473 ../fish/guestfish-actions.pod:3619
 msgid "B<part_start>"
-msgstr ""
+msgstr "B<part_start>"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:5475
@@ -15540,7 +15961,7 @@ msgstr ""
 #. type: =item
 #: ../src/guestfs-actions.pod:5478 ../fish/guestfish-actions.pod:3624
 msgid "B<part_end>"
-msgstr ""
+msgstr "B<part_end>"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:5480 ../fish/guestfish-actions.pod:3626
@@ -15550,7 +15971,7 @@ msgstr ""
 #. type: =item
 #: ../src/guestfs-actions.pod:5482 ../fish/guestfish-actions.pod:3628
 msgid "B<part_size>"
-msgstr ""
+msgstr "B<part_size>"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:5484 ../fish/guestfish-actions.pod:3630
@@ -15560,8 +15981,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:5488
 msgid ""
-"This function returns a C<struct guestfs_partition_list *>, or NULL if there "
-"was an error.  I<The caller must call C<guestfs_free_partition_list> after "
+"This function returns a C<struct guestfs_partition_list *>, or NULL if there"
+" was an error.  I<The caller must call C<guestfs_free_partition_list> after "
 "use>."
 msgstr ""
 
@@ -15617,8 +16038,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:5521 ../fish/guestfish-actions.pod:3649
 msgid ""
-"Sets the MBR type byte (also known as the ID byte) of the numbered partition "
-"C<partnum> to C<idbyte>.  Note that the type bytes quoted in most "
+"Sets the MBR type byte (also known as the ID byte) of the numbered partition"
+" C<partnum> to C<idbyte>.  Note that the type bytes quoted in most "
 "documentation are in fact hexadecimal numbers, but usually documented "
 "without any leading \"0x\" which might be confusing."
 msgstr ""
@@ -15827,8 +16248,8 @@ msgstr ""
 #: ../src/guestfs-actions.pod:5660 ../fish/guestfish-actions.pod:3734
 msgid ""
 "The implementation uses the C<pvremove> command which refuses to wipe "
-"physical volumes that contain any volume groups, so you have to remove those "
-"first."
+"physical volumes that contain any volume groups, so you have to remove those"
+" first."
 msgstr ""
 
 #. type: =head2
@@ -15872,8 +16293,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:5688
 msgid ""
-"This command is the same as C<guestfs_pvresize> except that it allows you to "
-"specify the new size (in bytes) explicitly."
+"This command is the same as C<guestfs_pvresize> except that it allows you to"
+" specify the new size (in bytes) explicitly."
 msgstr ""
 
 #. type: =head2
@@ -15893,15 +16314,15 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:5700 ../fish/guestfish-actions.pod:3756
 msgid ""
-"List all the physical volumes detected.  This is the equivalent of the L<pvs"
-"(8)> command."
+"List all the physical volumes detected.  This is the equivalent of the "
+"L<pvs(8)> command."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:5703 ../fish/guestfish-actions.pod:3759
 msgid ""
-"This returns a list of just the device names that contain PVs (eg. C</dev/"
-"sda2>)."
+"This returns a list of just the device names that contain PVs (eg. "
+"C</dev/sda2>)."
 msgstr ""
 
 #. type: textblock
@@ -15926,15 +16347,16 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:5719 ../fish/guestfish-actions.pod:3768
 msgid ""
-"List all the physical volumes detected.  This is the equivalent of the L<pvs"
-"(8)> command.  The \"full\" version includes all fields."
+"List all the physical volumes detected.  This is the equivalent of the "
+"L<pvs(8)> command.  The \"full\" version includes all fields."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:5722
 msgid ""
 "This function returns a C<struct guestfs_lvm_pv_list *>, or NULL if there "
-"was an error.  I<The caller must call C<guestfs_free_lvm_pv_list> after use>."
+"was an error.  I<The caller must call C<guestfs_free_lvm_pv_list> after "
+"use>."
 msgstr ""
 
 #. type: =head2
@@ -15978,8 +16400,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:5750 ../fish/guestfish-actions.pod:3781
 msgid ""
-"This command writes to part of a file.  It writes the data buffer C<content> "
-"to the file C<path> starting at offset C<offset>."
+"This command writes to part of a file.  It writes the data buffer C<content>"
+" to the file C<path> starting at offset C<offset>."
 msgstr ""
 
 #. type: textblock
@@ -16026,8 +16448,9 @@ msgstr ""
 #: ../src/guestfs-actions.pod:5780 ../fish/guestfish-actions.pod:3802
 msgid ""
 "This command implements the L<pwrite(2)> system call, and like that system "
-"call it may not write the full data requested (although short writes to disk "
-"devices and partitions are probably impossible with standard Linux kernels)."
+"call it may not write the full data requested (although short writes to disk"
+" devices and partitions are probably impossible with standard Linux "
+"kernels)."
 msgstr ""
 
 #. type: textblock
@@ -16064,8 +16487,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:5804
 msgid ""
-"Unlike C<guestfs_cat>, this function can correctly handle files that contain "
-"embedded ASCII NUL characters.  However unlike C<guestfs_download>, this "
+"Unlike C<guestfs_cat>, this function can correctly handle files that contain"
+" embedded ASCII NUL characters.  However unlike C<guestfs_download>, this "
 "function is limited in the total size of file that can be handled."
 msgstr ""
 
@@ -16143,82 +16566,82 @@ msgstr ""
 #. type: =item
 #: ../src/guestfs-actions.pod:5857 ../fish/guestfish-actions.pod:3856
 msgid "'b'"
-msgstr ""
+msgstr "'b'"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:5859 ../fish/guestfish-actions.pod:3858
 msgid "Block special"
-msgstr ""
+msgstr "Блоковий особливий"
 
 #. type: =item
 #: ../src/guestfs-actions.pod:5861 ../fish/guestfish-actions.pod:3860
 msgid "'c'"
-msgstr ""
+msgstr "'c'"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:5863 ../fish/guestfish-actions.pod:3862
 msgid "Char special"
-msgstr ""
+msgstr "Символьний особливий"
 
 #. type: =item
 #: ../src/guestfs-actions.pod:5865 ../fish/guestfish-actions.pod:3864
 msgid "'d'"
-msgstr ""
+msgstr "'d'"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:5867 ../fish/guestfish-actions.pod:3866
 msgid "Directory"
-msgstr ""
+msgstr "Каталог"
 
 #. type: =item
 #: ../src/guestfs-actions.pod:5869 ../fish/guestfish-actions.pod:3868
 msgid "'f'"
-msgstr ""
+msgstr "'f'"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:5871 ../fish/guestfish-actions.pod:3870
 msgid "FIFO (named pipe)"
-msgstr ""
+msgstr "FIFO (іменований канал)"
 
 #. type: =item
 #: ../src/guestfs-actions.pod:5873 ../fish/guestfish-actions.pod:3872
 msgid "'l'"
-msgstr ""
+msgstr "'l'"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:5875 ../fish/guestfish-actions.pod:3874
 msgid "Symbolic link"
-msgstr ""
+msgstr "Символічне посилання"
 
 #. type: =item
 #: ../src/guestfs-actions.pod:5877 ../fish/guestfish-actions.pod:3876
 msgid "'r'"
-msgstr ""
+msgstr "'r'"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:5879 ../fish/guestfish-actions.pod:3878
 msgid "Regular file"
-msgstr ""
+msgstr "Звичайний файл"
 
 #. type: =item
 #: ../src/guestfs-actions.pod:5881 ../fish/guestfish-actions.pod:3880
 msgid "'s'"
-msgstr ""
+msgstr "'s'"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:5883 ../fish/guestfish-actions.pod:3882
 msgid "Socket"
-msgstr ""
+msgstr "Сокет"
 
 #. type: =item
 #: ../src/guestfs-actions.pod:5885 ../fish/guestfish-actions.pod:3884
 msgid "'u'"
-msgstr ""
+msgstr "'u'"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:5887 ../fish/guestfish-actions.pod:3886
 msgid "Unknown file type"
-msgstr ""
+msgstr "Невідомий тип файла"
 
 #. type: =item
 #: ../src/guestfs-actions.pod:5889 ../fish/guestfish-actions.pod:3888
@@ -16243,7 +16666,8 @@ msgstr ""
 #: ../src/guestfs-actions.pod:5900
 msgid ""
 "This function returns a C<struct guestfs_dirent_list *>, or NULL if there "
-"was an error.  I<The caller must call C<guestfs_free_dirent_list> after use>."
+"was an error.  I<The caller must call C<guestfs_free_dirent_list> after "
+"use>."
 msgstr ""
 
 #. type: =head2
@@ -16293,8 +16717,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:5930 ../fish/guestfish-actions.pod:3913
 msgid ""
-"On return you get a list of strings, with a one-to-one correspondence to the "
-"C<names> list.  Each string is the value of the symbolic link."
+"On return you get a list of strings, with a one-to-one correspondence to the"
+" C<names> list.  Each string is the value of the symbolic link."
 msgstr ""
 
 #. type: textblock
@@ -16302,16 +16726,16 @@ msgstr ""
 msgid ""
 "If the C<readlink(2)> operation fails on any name, then the corresponding "
 "result string is the empty string C<\"\">.  However the whole operation is "
-"completed even if there were C<readlink(2)> errors, and so you can call this "
-"function with names where you don't know if they are symbolic links already "
-"(albeit slightly less efficient)."
+"completed even if there were C<readlink(2)> errors, and so you can call this"
+" function with names where you don't know if they are symbolic links already"
+" (albeit slightly less efficient)."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:5941 ../fish/guestfish-actions.pod:3924
 msgid ""
-"This call is intended for programs that want to efficiently list a directory "
-"contents without making many round-trips.  Very long directory listings "
+"This call is intended for programs that want to efficiently list a directory"
+" contents without making many round-trips.  Very long directory listings "
 "might cause the protocol message size to be exceeded, causing this call to "
 "fail.  The caller must split up such requests into smaller groups of names."
 msgstr ""
@@ -16617,10 +17041,10 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:6131
 msgid ""
-"This command creates the directory C<dir> and then fills it with files until "
-"the filesystem is full, and scrubs the files as for C<guestfs_scrub_file>, "
-"and deletes them.  The intention is to scrub any free space on the partition "
-"containing C<dir>."
+"This command creates the directory C<dir> and then fills it with files until"
+" the filesystem is full, and scrubs the files as for C<guestfs_scrub_file>, "
+"and deletes them.  The intention is to scrub any free space on the partition"
+" containing C<dir>."
 msgstr ""
 
 #. type: =head2
@@ -16691,12 +17115,12 @@ msgstr ""
 #. type: =item
 #: ../src/guestfs-actions.pod:6179 ../fish/guestfish-actions.pod:4077
 msgid "C<unix:I<path>>"
-msgstr ""
+msgstr "C<unix:I<шлях>>"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:6181 ../fish/guestfish-actions.pod:4079
 msgid "Connect to the Unix domain socket I<path>."
-msgstr ""
+msgstr "Встановити з’єднання з сокетом домену Unix I<шлях>."
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:6183 ../fish/guestfish-actions.pod:4081
@@ -16768,7 +17192,8 @@ msgstr ""
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:6225 ../fish/guestfish-actions.pod:4115
-msgid "You probably don't want to use this unless you know what you are doing."
+msgid ""
+"You probably don't want to use this unless you know what you are doing."
 msgstr ""
 
 #. type: textblock
@@ -16891,8 +17316,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:6301 ../fish/guestfish-actions.pod:4169
 msgid ""
-"This affects whether commands are able to access the network (see L<guestfs"
-"(3)/RUNNING COMMANDS>)."
+"This affects whether commands are able to access the network (see "
+"L<guestfs(3)/RUNNING COMMANDS>)."
 msgstr ""
 
 #. type: textblock
@@ -17014,8 +17439,8 @@ msgid ""
 "Note that you should call this function as early as possible after creating "
 "the handle.  This is because some pre-launch operations depend on testing "
 "qemu features (by running C<qemu -help>).  If the qemu binary changes, we "
-"don't retest features, and so you might see inconsistent results.  Using the "
-"environment variable C<LIBGUESTFS_QEMU> is safest of all since that picks "
+"don't retest features, and so you might see inconsistent results.  Using the"
+" environment variable C<LIBGUESTFS_QEMU> is safest of all since that picks "
 "the qemu binary at the same time as the handle is created."
 msgstr ""
 
@@ -17046,8 +17471,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:6384
 msgid ""
-"This only has any effect if called before C<guestfs_launch>, and the default "
-"is true."
+"This only has any effect if called before C<guestfs_launch>, and the default"
+" is true."
 msgstr ""
 
 #. type: textblock
@@ -17106,8 +17531,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:6422 ../fish/guestfish-actions.pod:4268
 msgid ""
-"If the command trace flag is set to 1, then libguestfs calls, parameters and "
-"return values are traced."
+"If the command trace flag is set to 1, then libguestfs calls, parameters and"
+" return values are traced."
 msgstr ""
 
 #. type: textblock
@@ -17257,18 +17682,19 @@ msgstr ""
 #: ../src/guestfs-actions.pod:6508 ../fish/guestfish-actions.pod:4325
 msgid ""
 "C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads and "
-"sectors on the device, which are passed directly to sfdisk as the I<-C>, I<-"
-"H> and I<-S> parameters.  If you pass C<0> for any of these, then the "
-"corresponding parameter is omitted.  Usually for 'large' disks, you can just "
-"pass C<0> for these, but for small (floppy-sized) disks, sfdisk (or rather, "
-"the kernel) cannot work out the right geometry and you will need to tell it."
+"sectors on the device, which are passed directly to sfdisk as the I<-C>, "
+"I<-H> and I<-S> parameters.  If you pass C<0> for any of these, then the "
+"corresponding parameter is omitted.  Usually for 'large' disks, you can just"
+" pass C<0> for these, but for small (floppy-sized) disks, sfdisk (or rather,"
+" the kernel) cannot work out the right geometry and you will need to tell "
+"it."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:6516 ../fish/guestfish-actions.pod:4333
 msgid ""
-"C<lines> is a list of lines that we feed to C<sfdisk>.  For more information "
-"refer to the L<sfdisk(8)> manpage."
+"C<lines> is a list of lines that we feed to C<sfdisk>.  For more information"
+" refer to the L<sfdisk(8)> manpage."
 msgstr ""
 
 #. type: textblock
@@ -17382,9 +17808,9 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:6609
 msgid ""
-"This displays the disk geometry of C<device> read from the partition table.  "
-"Especially in the case where the underlying block device has been resized, "
-"this can be different from the kernel's idea of the geometry (see "
+"This displays the disk geometry of C<device> read from the partition table."
+"  Especially in the case where the underlying block device has been resized,"
+" this can be different from the kernel's idea of the geometry (see "
 "C<guestfs_sfdisk_kernel_geometry>)."
 msgstr ""
 
@@ -17432,8 +17858,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:6644 ../fish/guestfish-actions.pod:4423
 msgid ""
-"This displays the partition table on C<device>, in the human-readable output "
-"of the L<sfdisk(8)> command.  It is not intended to be parsed."
+"This displays the partition table on C<device>, in the human-readable output"
+" of the L<sfdisk(8)> command.  It is not intended to be parsed."
 msgstr ""
 
 #. type: textblock
@@ -17444,7 +17870,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:6653 ../fish/guestfish-actions.pod:4429
 msgid ""
-"This function is deprecated.  In new code, use the C<part_list> call instead."
+"This function is deprecated.  In new code, use the C<part_list> call "
+"instead."
 msgstr ""
 
 #. type: =head2
@@ -17465,8 +17892,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:6668 ../fish/guestfish-actions.pod:4440
 msgid ""
-"This call runs a command from the guest filesystem via the guest's C</bin/"
-"sh>."
+"This call runs a command from the guest filesystem via the guest's "
+"C</bin/sh>."
 msgstr ""
 
 #. type: textblock
@@ -17585,8 +18012,8 @@ msgstr ""
 #: ../src/guestfs-actions.pod:6737 ../fish/guestfish-actions.pod:4480
 msgid ""
 "Returns file system statistics for any mounted file system.  C<path> should "
-"be a file or directory in the mounted file system (typically it is the mount "
-"point itself, but it doesn't need to be)."
+"be a file or directory in the mounted file system (typically it is the mount"
+" point itself, but it doesn't need to be)."
 msgstr ""
 
 #. type: textblock
@@ -17597,8 +18024,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:6743
 msgid ""
-"This function returns a C<struct guestfs_statvfs *>, or NULL if there was an "
-"error.  I<The caller must call C<guestfs_free_statvfs> after use>."
+"This function returns a C<struct guestfs_statvfs *>, or NULL if there was an"
+" error.  I<The caller must call C<guestfs_free_statvfs> after use>."
 msgstr ""
 
 #. type: =head2
@@ -17649,12 +18076,12 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:6778 ../fish/guestfish-actions.pod:4504
 msgid "Allowed encodings are:"
-msgstr ""
+msgstr "Можливими кодуваннями є:"
 
 #. type: =item
 #: ../src/guestfs-actions.pod:6782 ../fish/guestfish-actions.pod:4508
 msgid "s"
-msgstr ""
+msgstr "s"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:6784
@@ -17666,21 +18093,22 @@ msgstr ""
 #. type: =item
 #: ../src/guestfs-actions.pod:6787 ../fish/guestfish-actions.pod:4513
 msgid "S"
-msgstr ""
+msgstr "S"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:6789 ../fish/guestfish-actions.pod:4515
 msgid "Single 8-bit-byte characters."
-msgstr ""
+msgstr "Окремі 8-бітові-байтові символи."
 
 #. type: =item
 #: ../src/guestfs-actions.pod:6791 ../fish/guestfish-actions.pod:4517
 msgid "b"
-msgstr ""
+msgstr "b"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:6793 ../fish/guestfish-actions.pod:4519
-msgid "16-bit big endian strings such as those encoded in UTF-16BE or UCS-2BE."
+msgid ""
+"16-bit big endian strings such as those encoded in UTF-16BE or UCS-2BE."
 msgstr ""
 
 #. type: =item
@@ -17698,7 +18126,7 @@ msgstr ""
 #. type: =item
 #: ../src/guestfs-actions.pod:6801 ../fish/guestfish-actions.pod:4527
 msgid "B"
-msgstr ""
+msgstr "B"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:6803 ../fish/guestfish-actions.pod:4529
@@ -17708,7 +18136,7 @@ msgstr ""
 #. type: =item
 #: ../src/guestfs-actions.pod:6805 ../fish/guestfish-actions.pod:4531
 msgid "L"
-msgstr ""
+msgstr "L"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:6807 ../fish/guestfish-actions.pod:4533
@@ -17802,8 +18230,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:6867 ../fish/guestfish-actions.pod:4567
 msgid ""
-"This command disables the libguestfs appliance swap partition with the given "
-"UUID."
+"This command disables the libguestfs appliance swap partition with the given"
+" UUID."
 msgstr ""
 
 #. type: =head2
@@ -17833,10 +18261,10 @@ msgstr ""
 #: ../src/guestfs-actions.pod:6885 ../fish/guestfish-actions.pod:4579
 msgid ""
 "Note that you should not swap to existing guest swap partitions unless you "
-"know what you are doing.  They may contain hibernation information, or other "
-"information that the guest doesn't want you to trash.  You also risk leaking "
-"information about the host to the guest this way.  Instead, attach a new "
-"host device to the guest and swap on that."
+"know what you are doing.  They may contain hibernation information, or other"
+" information that the guest doesn't want you to trash.  You also risk "
+"leaking information about the host to the guest this way.  Instead, attach a"
+" new host device to the guest and swap on that."
 msgstr ""
 
 #. type: =head2
@@ -17857,8 +18285,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:6902
 msgid ""
-"This command enables swap to a file.  See C<guestfs_swapon_device> for other "
-"notes."
+"This command enables swap to a file.  See C<guestfs_swapon_device> for other"
+" notes."
 msgstr ""
 
 #. type: =head2
@@ -18068,8 +18496,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:7033 ../fish/guestfish-actions.pod:4670
 msgid ""
-"This command uploads and unpacks local file C<tarball> (a I<gzip compressed> "
-"tar file) into C<directory>."
+"This command uploads and unpacks local file C<tarball> (a I<gzip compressed>"
+" tar file) into C<directory>."
 msgstr ""
 
 #. type: textblock
@@ -18207,8 +18635,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:7114 ../fish/guestfish-actions.pod:4723
 msgid ""
-"This returns the contents of the ext2, ext3 or ext4 filesystem superblock on "
-"C<device>."
+"This returns the contents of the ext2, ext3 or ext4 filesystem superblock on"
+" C<device>."
 msgstr ""
 
 #. type: textblock
@@ -18216,8 +18644,8 @@ msgstr ""
 msgid ""
 "It is the same as running C<tune2fs -l device>.  See L<tune2fs(8)> manpage "
 "for more details.  The list of fields returned isn't clearly defined, and "
-"depends on both the version of C<tune2fs> that libguestfs was built against, "
-"and the filesystem itself."
+"depends on both the version of C<tune2fs> that libguestfs was built against,"
+" and the filesystem itself."
 msgstr ""
 
 #. type: =head2
@@ -18507,9 +18935,9 @@ msgstr ""
 #: ../src/guestfs-actions.pod:7308 ../fish/guestfish-actions.pod:4854
 msgid ""
 "Note that because of dynamic linking this is not necessarily the version of "
-"libguestfs that you compiled against.  You can compile the program, and then "
-"at runtime dynamically link against a completely different C<libguestfs.so> "
-"library."
+"libguestfs that you compiled against.  You can compile the program, and then"
+" at runtime dynamically link against a completely different C<libguestfs.so>"
+" library."
 msgstr ""
 
 #. type: textblock
@@ -18524,8 +18952,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:7319 ../fish/guestfish-actions.pod:4865
 msgid ""
-"The call returns a structure with four elements.  The first three (C<major>, "
-"C<minor> and C<release>) are numbers and correspond to the usual version "
+"The call returns a structure with four elements.  The first three (C<major>,"
+" C<minor> and C<release>) are numbers and correspond to the usual version "
 "triplet.  The fourth element (C<extra>) is a string and is normally empty, "
 "but may be used for distro-specific information."
 msgstr ""
@@ -18553,8 +18981,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:7336
 msgid ""
-"This function returns a C<struct guestfs_version *>, or NULL if there was an "
-"error.  I<The caller must call C<guestfs_free_version> after use>."
+"This function returns a C<struct guestfs_version *>, or NULL if there was an"
+" error.  I<The caller must call C<guestfs_free_version> after use>."
 msgstr ""
 
 #. type: textblock
@@ -18874,8 +19302,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:7518 ../fish/guestfish-actions.pod:4987
 msgid ""
-"List all the volumes groups detected.  This is the equivalent of the L<vgs(8)"
-"> command."
+"List all the volumes groups detected.  This is the equivalent of the "
+"L<vgs(8)> command."
 msgstr ""
 
 #. type: textblock
@@ -18907,15 +19335,16 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:7537 ../fish/guestfish-actions.pod:4999
 msgid ""
-"List all the volumes groups detected.  This is the equivalent of the L<vgs(8)"
-"> command.  The \"full\" version includes all fields."
+"List all the volumes groups detected.  This is the equivalent of the "
+"L<vgs(8)> command.  The \"full\" version includes all fields."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:7540
 msgid ""
 "This function returns a C<struct guestfs_lvm_vg_list *>, or NULL if there "
-"was an error.  I<The caller must call C<guestfs_free_lvm_vg_list> after use>."
+"was an error.  I<The caller must call C<guestfs_free_lvm_vg_list> after "
+"use>."
 msgstr ""
 
 #. type: =head2
@@ -18981,16 +19410,16 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:7578
 msgid ""
-"In versions of the API E<lt> 1.0.71 you had to call this function just after "
-"calling C<guestfs_launch> to wait for the launch to complete.  However this "
-"is no longer necessary because C<guestfs_launch> now does the waiting."
+"In versions of the API E<lt> 1.0.71 you had to call this function just after"
+" calling C<guestfs_launch> to wait for the launch to complete.  However this"
+" is no longer necessary because C<guestfs_launch> now does the waiting."
 msgstr ""
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:7583
 msgid ""
-"If you see any calls to this function in code then you can just remove them, "
-"unless you want to retain compatibility with older versions of the API."
+"If you see any calls to this function in code then you can just remove them,"
+" unless you want to retain compatibility with older versions of the API."
 msgstr ""
 
 #. type: textblock
@@ -19039,7 +19468,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:7617 ../fish/guestfish-actions.pod:5026
 msgid ""
-"This command counts the lines in a file, using the C<wc -l> external command."
+"This command counts the lines in a file, using the C<wc -l> external "
+"command."
 msgstr ""
 
 #. type: =head2
@@ -19060,7 +19490,8 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:7630 ../fish/guestfish-actions.pod:5033
 msgid ""
-"This command counts the words in a file, using the C<wc -w> external command."
+"This command counts the words in a file, using the C<wc -w> external "
+"command."
 msgstr ""
 
 #. type: =head2
@@ -19089,10 +19520,8 @@ msgstr ""
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:7648
-#, fuzzy
-#| msgid "See L<guestfish(1)>."
 msgid "See also C<guestfs_write_append>."
-msgstr "Див. L<guestfish(1)>."
+msgstr ""
 
 #. type: =head2
 #: ../src/guestfs-actions.pod:7657
@@ -19120,15 +19549,13 @@ msgstr ""
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:7668
-#, fuzzy
-#| msgid "See L<guestfish(1)>."
 msgid "See also C<guestfs_write>."
-msgstr "Див. L<guestfish(1)>."
+msgstr ""
 
 #. type: =head2
 #: ../src/guestfs-actions.pod:7675
 msgid "guestfs_write_file"
-msgstr ""
+msgstr "guestfs_write_file"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:7677
@@ -19141,6 +19568,12 @@ msgid ""
 "                     int size);\n"
 "\n"
 msgstr ""
+" int\n"
+" guestfs_write_file (guestfs_h *g,\n"
+"                     const char *path,\n"
+"                     const char *content,\n"
+"                     int size);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:7683 ../fish/guestfish-actions.pod:5064
@@ -19172,7 +19605,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs-actions.pod:7708
 msgid "guestfs_zegrep"
-msgstr ""
+msgstr "guestfs_zegrep"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:7710
@@ -19184,6 +19617,11 @@ msgid ""
 "                 const char *path);\n"
 "\n"
 msgstr ""
+" char **\n"
+" guestfs_zegrep (guestfs_h *g,\n"
+"                 const char *regex,\n"
+"                 const char *path);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:7715 ../fish/guestfish-actions.pod:5089
@@ -19194,7 +19632,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs-actions.pod:7727
 msgid "guestfs_zegrepi"
-msgstr ""
+msgstr "guestfs_zegrepi"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:7729
@@ -19206,6 +19644,11 @@ msgid ""
 "                  const char *path);\n"
 "\n"
 msgstr ""
+" char **\n"
+" guestfs_zegrepi (guestfs_h *g,\n"
+"                  const char *regex,\n"
+"                  const char *path);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:7734 ../fish/guestfish-actions.pod:5099
@@ -19216,7 +19659,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs-actions.pod:7746
 msgid "guestfs_zero"
-msgstr ""
+msgstr "guestfs_zero"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:7748
@@ -19227,6 +19670,10 @@ msgid ""
 "               const char *device);\n"
 "\n"
 msgstr ""
+" int\n"
+" guestfs_zero (guestfs_h *g,\n"
+"               const char *device);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:7752 ../fish/guestfish-actions.pod:5109
@@ -19251,7 +19698,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs-actions.pod:7770
 msgid "guestfs_zero_device"
-msgstr ""
+msgstr "guestfs_zero_device"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:7772
@@ -19262,6 +19709,10 @@ msgid ""
 "                      const char *device);\n"
 "\n"
 msgstr ""
+" int\n"
+" guestfs_zero_device (guestfs_h *g,\n"
+"                      const char *device);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:7776
@@ -19273,12 +19724,12 @@ msgstr ""
 #. type: textblock
 #: ../src/guestfs-actions.pod:7790
 msgid "(Added in 1.3.1)"
-msgstr ""
+msgstr "(Додано у 1.3.1)"
 
 #. type: =head2
 #: ../src/guestfs-actions.pod:7792
 msgid "guestfs_zerofree"
-msgstr ""
+msgstr "guestfs_zerofree"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:7794
@@ -19289,12 +19740,16 @@ msgid ""
 "                   const char *device);\n"
 "\n"
 msgstr ""
+" int\n"
+" guestfs_zerofree (guestfs_h *g,\n"
+"                   const char *device);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:7798 ../fish/guestfish-actions.pod:5133
 msgid ""
-"This runs the I<zerofree> program on C<device>.  This program claims to zero "
-"unused inodes and disk blocks on an ext2/3 filesystem, thus making it "
+"This runs the I<zerofree> program on C<device>.  This program claims to zero"
+" unused inodes and disk blocks on an ext2/3 filesystem, thus making it "
 "possible to compress the filesystem more effectively."
 msgstr ""
 
@@ -19313,7 +19768,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs-actions.pod:7813
 msgid "guestfs_zfgrep"
-msgstr ""
+msgstr "guestfs_zfgrep"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:7815
@@ -19325,6 +19780,11 @@ msgid ""
 "                 const char *path);\n"
 "\n"
 msgstr ""
+" char **\n"
+" guestfs_zfgrep (guestfs_h *g,\n"
+"                 const char *pattern,\n"
+"                 const char *path);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:7820 ../fish/guestfish-actions.pod:5148
@@ -19335,7 +19795,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs-actions.pod:7832
 msgid "guestfs_zfgrepi"
-msgstr ""
+msgstr "guestfs_zfgrepi"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:7834
@@ -19347,6 +19807,11 @@ msgid ""
 "                  const char *path);\n"
 "\n"
 msgstr ""
+" char **\n"
+" guestfs_zfgrepi (guestfs_h *g,\n"
+"                  const char *pattern,\n"
+"                  const char *path);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:7839 ../fish/guestfish-actions.pod:5158
@@ -19357,7 +19822,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs-actions.pod:7851
 msgid "guestfs_zfile"
-msgstr ""
+msgstr "guestfs_zfile"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:7853
@@ -19369,6 +19834,11 @@ msgid ""
 "                const char *path);\n"
 "\n"
 msgstr ""
+" char *\n"
+" guestfs_zfile (guestfs_h *g,\n"
+"                const char *meth,\n"
+"                const char *path);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:7858 ../fish/guestfish-actions.pod:5168
@@ -19397,7 +19867,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs-actions.pod:7878
 msgid "guestfs_zgrep"
-msgstr ""
+msgstr "guestfs_zgrep"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:7880
@@ -19409,6 +19879,11 @@ msgid ""
 "                const char *path);\n"
 "\n"
 msgstr ""
+" char **\n"
+" guestfs_zgrep (guestfs_h *g,\n"
+"                const char *regex,\n"
+"                const char *path);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:7885 ../fish/guestfish-actions.pod:5187
@@ -19419,7 +19894,7 @@ msgstr ""
 #. type: =head2
 #: ../src/guestfs-actions.pod:7897
 msgid "guestfs_zgrepi"
-msgstr ""
+msgstr "guestfs_zgrepi"
 
 #. type: verbatim
 #: ../src/guestfs-actions.pod:7899
@@ -19431,6 +19906,11 @@ msgid ""
 "                 const char *path);\n"
 "\n"
 msgstr ""
+" char **\n"
+" guestfs_zgrepi (guestfs_h *g,\n"
+"                 const char *regex,\n"
+"                 const char *path);\n"
+"\n"
 
 #. type: textblock
 #: ../src/guestfs-actions.pod:7904 ../fish/guestfish-actions.pod:5197
@@ -19441,16 +19921,16 @@ msgstr ""
 #. type: =item
 #: ../src/guestfs-availability.pod:3
 msgid "B<augeas>"
-msgstr ""
+msgstr "B<augeas>"
 
 #. type: textblock
 #: ../src/guestfs-availability.pod:5
 msgid ""
-"The following functions: L</guestfs_aug_clear> L</guestfs_aug_close> L</"
-"guestfs_aug_defnode> L</guestfs_aug_defvar> L</guestfs_aug_get> L</"
-"guestfs_aug_init> L</guestfs_aug_insert> L</guestfs_aug_load> L</"
-"guestfs_aug_ls> L</guestfs_aug_match> L</guestfs_aug_mv> L</guestfs_aug_rm> "
-"L</guestfs_aug_save> L</guestfs_aug_set>"
+"The following functions: L</guestfs_aug_clear> L</guestfs_aug_close> "
+"L</guestfs_aug_defnode> L</guestfs_aug_defvar> L</guestfs_aug_get> "
+"L</guestfs_aug_init> L</guestfs_aug_insert> L</guestfs_aug_load> "
+"L</guestfs_aug_ls> L</guestfs_aug_match> L</guestfs_aug_mv> "
+"L</guestfs_aug_rm> L</guestfs_aug_save> L</guestfs_aug_set>"
 msgstr ""
 
 #. type: =item
@@ -19466,32 +19946,32 @@ msgstr ""
 #. type: =item
 #: ../src/guestfs-availability.pod:26
 msgid "B<inotify>"
-msgstr ""
+msgstr "B<inotify>"
 
 #. type: textblock
 #: ../src/guestfs-availability.pod:28
 msgid ""
-"The following functions: L</guestfs_inotify_add_watch> L</"
-"guestfs_inotify_close> L</guestfs_inotify_files> L</guestfs_inotify_init> L</"
-"guestfs_inotify_read> L</guestfs_inotify_rm_watch>"
+"The following functions: L</guestfs_inotify_add_watch> "
+"L</guestfs_inotify_close> L</guestfs_inotify_files> L</guestfs_inotify_init>"
+" L</guestfs_inotify_read> L</guestfs_inotify_rm_watch>"
 msgstr ""
 
 #. type: =item
 #: ../src/guestfs-availability.pod:36
 msgid "B<linuxfsuuid>"
-msgstr ""
+msgstr "B<linuxfsuuid>"
 
 #. type: textblock
 #: ../src/guestfs-availability.pod:38
 msgid ""
-"The following functions: L</guestfs_mke2fs_JU> L</guestfs_mke2journal_U> L</"
-"guestfs_mkswap_U> L</guestfs_swapoff_uuid> L</guestfs_swapon_uuid>"
+"The following functions: L</guestfs_mke2fs_JU> L</guestfs_mke2journal_U> "
+"L</guestfs_mkswap_U> L</guestfs_swapoff_uuid> L</guestfs_swapon_uuid>"
 msgstr ""
 
 #. type: =item
 #: ../src/guestfs-availability.pod:45
 msgid "B<linuxmodules>"
-msgstr ""
+msgstr "B<linuxmodules>"
 
 #. type: textblock
 #: ../src/guestfs-availability.pod:47
@@ -19501,63 +19981,64 @@ msgstr ""
 #. type: =item
 #: ../src/guestfs-availability.pod:50
 msgid "B<linuxxattrs>"
-msgstr ""
+msgstr "B<linuxxattrs>"
 
 #. type: textblock
 #: ../src/guestfs-availability.pod:52
 msgid ""
-"The following functions: L</guestfs_getxattr> L</guestfs_getxattrs> L</"
-"guestfs_lgetxattr> L</guestfs_lgetxattrs> L</guestfs_lremovexattr> L</"
-"guestfs_lsetxattr> L</guestfs_lxattrlist> L</guestfs_removexattr> L</"
-"guestfs_setxattr>"
+"The following functions: L</guestfs_getxattr> L</guestfs_getxattrs> "
+"L</guestfs_lgetxattr> L</guestfs_lgetxattrs> L</guestfs_lremovexattr> "
+"L</guestfs_lsetxattr> L</guestfs_lxattrlist> L</guestfs_removexattr> "
+"L</guestfs_setxattr>"
 msgstr ""
 
 #. type: =item
 #: ../src/guestfs-availability.pod:63
 msgid "B<luks>"
-msgstr ""
+msgstr "B<luks>"
 
 #. type: textblock
 #: ../src/guestfs-availability.pod:65
 msgid ""
-"The following functions: L</guestfs_luks_add_key> L</guestfs_luks_close> L</"
-"guestfs_luks_format> L</guestfs_luks_format_cipher> L</"
-"guestfs_luks_kill_slot> L</guestfs_luks_open> L</guestfs_luks_open_ro>"
+"The following functions: L</guestfs_luks_add_key> L</guestfs_luks_close> "
+"L</guestfs_luks_format> L</guestfs_luks_format_cipher> "
+"L</guestfs_luks_kill_slot> L</guestfs_luks_open> L</guestfs_luks_open_ro>"
 msgstr ""
 
 #. type: =item
 #: ../src/guestfs-availability.pod:74
 msgid "B<lvm2>"
-msgstr ""
+msgstr "B<lvm2>"
 
 #. type: textblock
 #: ../src/guestfs-availability.pod:76
 msgid ""
-"The following functions: L</guestfs_is_lv> L</guestfs_lvcreate> L</"
-"guestfs_lvm_remove_all> L</guestfs_lvm_set_filter> L</guestfs_lvremove> L</"
-"guestfs_lvresize> L</guestfs_lvresize_free> L</guestfs_lvs> L</"
-"guestfs_lvs_full> L</guestfs_pvcreate> L</guestfs_pvremove> L</"
-"guestfs_pvresize> L</guestfs_pvresize_size> L</guestfs_pvs> L</"
-"guestfs_pvs_full> L</guestfs_vg_activate> L</guestfs_vg_activate_all> L</"
-"guestfs_vgcreate> L</guestfs_vgremove> L</guestfs_vgs> L</guestfs_vgs_full>"
+"The following functions: L</guestfs_is_lv> L</guestfs_lvcreate> "
+"L</guestfs_lvm_remove_all> L</guestfs_lvm_set_filter> L</guestfs_lvremove> "
+"L</guestfs_lvresize> L</guestfs_lvresize_free> L</guestfs_lvs> "
+"L</guestfs_lvs_full> L</guestfs_pvcreate> L</guestfs_pvremove> "
+"L</guestfs_pvresize> L</guestfs_pvresize_size> L</guestfs_pvs> "
+"L</guestfs_pvs_full> L</guestfs_vg_activate> L</guestfs_vg_activate_all> "
+"L</guestfs_vgcreate> L</guestfs_vgremove> L</guestfs_vgs> "
+"L</guestfs_vgs_full>"
 msgstr ""
 
 #. type: =item
 #: ../src/guestfs-availability.pod:99
 msgid "B<mknod>"
-msgstr ""
+msgstr "B<mknod>"
 
 #. type: textblock
 #: ../src/guestfs-availability.pod:101
 msgid ""
-"The following functions: L</guestfs_mkfifo> L</guestfs_mknod> L</"
-"guestfs_mknod_b> L</guestfs_mknod_c>"
+"The following functions: L</guestfs_mkfifo> L</guestfs_mknod> "
+"L</guestfs_mknod_b> L</guestfs_mknod_c>"
 msgstr ""
 
 #. type: =item
 #: ../src/guestfs-availability.pod:107
 msgid "B<ntfs3g>"
-msgstr ""
+msgstr "B<ntfs3g>"
 
 #. type: textblock
 #: ../src/guestfs-availability.pod:109
@@ -19567,7 +20048,7 @@ msgstr ""
 #. type: =item
 #: ../src/guestfs-availability.pod:112
 msgid "B<ntfsprogs>"
-msgstr ""
+msgstr "B<ntfsprogs>"
 
 #. type: textblock
 #: ../src/guestfs-availability.pod:114
@@ -19579,7 +20060,7 @@ msgstr ""
 #. type: =item
 #: ../src/guestfs-availability.pod:119
 msgid "B<realpath>"
-msgstr ""
+msgstr "B<realpath>"
 
 #. type: textblock
 #: ../src/guestfs-availability.pod:121
@@ -19589,19 +20070,19 @@ msgstr ""
 #. type: =item
 #: ../src/guestfs-availability.pod:124
 msgid "B<scrub>"
-msgstr ""
+msgstr "B<scrub>"
 
 #. type: textblock
 #: ../src/guestfs-availability.pod:126
 msgid ""
-"The following functions: L</guestfs_scrub_device> L</guestfs_scrub_file> L</"
-"guestfs_scrub_freespace>"
+"The following functions: L</guestfs_scrub_device> L</guestfs_scrub_file> "
+"L</guestfs_scrub_freespace>"
 msgstr ""
 
 #. type: =item
 #: ../src/guestfs-availability.pod:131
 msgid "B<selinux>"
-msgstr ""
+msgstr "B<selinux>"
 
 #. type: textblock
 #: ../src/guestfs-availability.pod:133
@@ -19611,7 +20092,7 @@ msgstr ""
 #. type: =item
 #: ../src/guestfs-availability.pod:137
 msgid "B<xz>"
-msgstr ""
+msgstr "B<xz>"
 
 #. type: textblock
 #: ../src/guestfs-availability.pod:139
@@ -19621,7 +20102,7 @@ msgstr ""
 #. type: =item
 #: ../src/guestfs-availability.pod:143
 msgid "B<zerofree>"
-msgstr ""
+msgstr "B<zerofree>"
 
 #. type: textblock
 #: ../src/guestfs-availability.pod:145
@@ -20197,15 +20678,15 @@ msgstr ""
 #: ../fish/guestfish.pod:23 ../fuse/guestmount.pod:15
 #: ../tools/virt-win-reg.pl:51 ../tools/virt-tar.pl:64
 msgid "WARNING"
-msgstr ""
+msgstr "ПОПЕРЕДЖЕННЯ"
 
 #. type: textblock
 #: ../fish/guestfish.pod:25
 msgid ""
 "Using guestfish in read/write mode on live virtual machines can be "
-"dangerous, potentially causing disk corruption.  Use the I<--ro> (read-only) "
-"option to use guestfish safely if the disk image or virtual machine might be "
-"live."
+"dangerous, potentially causing disk corruption.  Use the I<--ro> (read-only)"
+" option to use guestfish safely if the disk image or virtual machine might "
+"be live."
 msgstr ""
 
 #. type: textblock
@@ -20229,7 +20710,7 @@ msgstr ""
 #: ../fish/guestfish.pod:41 ../fish/guestfish.pod:1007
 #: ../fuse/guestmount.pod:39 ../tools/virt-tar.pl:50
 msgid "EXAMPLES"
-msgstr ""
+msgstr "ПРИКЛАДИ"
 
 #. type: =head2
 #: ../fish/guestfish.pod:43
@@ -20381,7 +20862,8 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish.pod:109
 msgid ""
-"Use the I<-i> option to automatically mount the disks from a virtual machine:"
+"Use the I<-i> option to automatically mount the disks from a virtual "
+"machine:"
 msgstr ""
 
 #. type: verbatim
@@ -20471,7 +20953,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish.pod:141
 msgid "Remote control"
-msgstr ""
+msgstr "Дистанційне керування"
 
 #. type: verbatim
 #: ../fish/guestfish.pod:143
@@ -20483,6 +20965,11 @@ msgid ""
 " guestfish --remote lvs\n"
 "\n"
 msgstr ""
+" eval \"`guestfish --listen`\"\n"
+" guestfish --remote add-ro disk.img\n"
+" guestfish --remote run\n"
+" guestfish --remote lvs\n"
+"\n"
 
 #. type: =head1
 #: ../fish/guestfish.pod:148 ../test-tool/libguestfs-test-tool.pod:37
@@ -20490,7 +20977,7 @@ msgstr ""
 #: ../tools/virt-list-filesystems.pl:53 ../tools/virt-tar.pl:103
 #: ../tools/virt-make-fs.pl:153 ../tools/virt-list-partitions.pl:54
 msgid "OPTIONS"
-msgstr ""
+msgstr "ПАРАМЕТРИ"
 
 #. type: =item
 #: ../fish/guestfish.pod:152 ../fuse/guestmount.pod:143
@@ -20498,7 +20985,7 @@ msgstr ""
 #: ../tools/virt-tar.pl:111 ../tools/virt-make-fs.pl:161
 #: ../tools/virt-list-partitions.pl:62
 msgid "B<--help>"
-msgstr ""
+msgstr "B<--help>"
 
 #. type: textblock
 #: ../fish/guestfish.pod:154
@@ -20508,12 +20995,12 @@ msgstr ""
 #. type: =item
 #: ../fish/guestfish.pod:156
 msgid "B<-h>"
-msgstr ""
+msgstr "B<-h>"
 
 #. type: =item
 #: ../fish/guestfish.pod:158
 msgid "B<--cmd-help>"
-msgstr ""
+msgstr "B<--cmd-help>"
 
 #. type: textblock
 #: ../fish/guestfish.pod:160
@@ -20523,12 +21010,12 @@ msgstr ""
 #. type: =item
 #: ../fish/guestfish.pod:162
 msgid "B<-h cmd>"
-msgstr ""
+msgstr "B<-h команда>"
 
 #. type: =item
 #: ../fish/guestfish.pod:164
 msgid "B<--cmd-help cmd>"
-msgstr ""
+msgstr "B<--cmd-help команда>"
 
 #. type: textblock
 #: ../fish/guestfish.pod:166
@@ -20538,12 +21025,12 @@ msgstr ""
 #. type: =item
 #: ../fish/guestfish.pod:168
 msgid "B<-a image>"
-msgstr ""
+msgstr "B<-a образ>"
 
 #. type: =item
 #: ../fish/guestfish.pod:170
 msgid "B<--add image>"
-msgstr ""
+msgstr "B<--add образ>"
 
 #. type: textblock
 #: ../fish/guestfish.pod:172
@@ -20553,8 +21040,8 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish.pod:174 ../fuse/guestmount.pod:91
 msgid ""
-"The format of the disk image is auto-detected.  To override this and force a "
-"particular format use the I<--format=..> option."
+"The format of the disk image is auto-detected.  To override this and force a"
+" particular format use the I<--format=..> option."
 msgstr ""
 
 #. type: textblock
@@ -20568,12 +21055,12 @@ msgstr ""
 #. type: =item
 #: ../fish/guestfish.pod:181
 msgid "B<-c URI>"
-msgstr ""
+msgstr "B<-c адреса>"
 
 #. type: =item
 #: ../fish/guestfish.pod:183
 msgid "B<--connect URI>"
-msgstr ""
+msgstr "B<--connect адреса>"
 
 #. type: textblock
 #: ../fish/guestfish.pod:185 ../fuse/guestmount.pod:96
@@ -20585,7 +21072,7 @@ msgstr ""
 #. type: =item
 #: ../fish/guestfish.pod:189
 msgid "B<--csh>"
-msgstr ""
+msgstr "B<--csh>"
 
 #. type: textblock
 #: ../fish/guestfish.pod:191
@@ -20597,12 +21084,12 @@ msgstr ""
 #. type: =item
 #: ../fish/guestfish.pod:194
 msgid "B<-d libvirt-domain>"
-msgstr ""
+msgstr "B<-d домен-libvirt>"
 
 #. type: =item
 #: ../fish/guestfish.pod:196
 msgid "B<--domain libvirt-domain>"
-msgstr ""
+msgstr "B<--domain домен-libvirt>"
 
 #. type: textblock
 #: ../fish/guestfish.pod:198 ../fuse/guestmount.pod:102
@@ -20628,12 +21115,12 @@ msgstr ""
 #. type: =item
 #: ../fish/guestfish.pod:208
 msgid "B<-D>"
-msgstr ""
+msgstr "B<-D>"
 
 #. type: =item
 #: ../fish/guestfish.pod:210
 msgid "B<--no-dest-paths>"
-msgstr ""
+msgstr "B<--no-dest-paths>"
 
 #. type: textblock
 #: ../fish/guestfish.pod:212
@@ -20647,7 +21134,7 @@ msgstr ""
 #. type: =item
 #: ../fish/guestfish.pod:217 ../fuse/guestmount.pod:120
 msgid "B<--echo-keys>"
-msgstr ""
+msgstr "B<--echo-keys>"
 
 #. type: textblock
 #: ../fish/guestfish.pod:219 ../fuse/guestmount.pod:122
@@ -20661,12 +21148,12 @@ msgstr ""
 #. type: =item
 #: ../fish/guestfish.pod:224
 msgid "B<-f file>"
-msgstr ""
+msgstr "B<-f файл>"
 
 #. type: =item
 #: ../fish/guestfish.pod:226
 msgid "B<--file file>"
-msgstr ""
+msgstr "B<--file файл>"
 
 #. type: textblock
 #: ../fish/guestfish.pod:228
@@ -20680,16 +21167,18 @@ msgid ""
 " #!/usr/bin/guestfish -f\n"
 "\n"
 msgstr ""
+" #!/usr/bin/guestfish -f\n"
+"\n"
 
 #. type: =item
 #: ../fish/guestfish.pod:233
 msgid "B<--format=raw|qcow2|..>"
-msgstr ""
+msgstr "B<--format=raw|qcow2|..>"
 
 #. type: =item
 #: ../fish/guestfish.pod:235
 msgid "B<--format>"
-msgstr ""
+msgstr "B<--format>"
 
 #. type: textblock
 #: ../fish/guestfish.pod:237 ../fuse/guestmount.pod:129
@@ -20707,6 +21196,8 @@ msgid ""
 " guestfish --format=raw -a disk.img\n"
 "\n"
 msgstr ""
+" guestfish --format=raw -a disk.img\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish.pod:246
@@ -20720,6 +21211,8 @@ msgid ""
 " guestfish --format=raw -a disk.img --format -a another.img\n"
 "\n"
 msgstr ""
+" guestfish --format=raw -a disk.img --format -a another.img\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish.pod:250
@@ -20739,12 +21232,12 @@ msgstr ""
 #. type: =item
 #: ../fish/guestfish.pod:258
 msgid "B<-i>"
-msgstr ""
+msgstr "B<-i>"
 
 #. type: =item
 #: ../fish/guestfish.pod:260
 msgid "B<--inspector>"
-msgstr ""
+msgstr "B<--inspector>"
 
 #. type: textblock
 #: ../fish/guestfish.pod:262 ../fuse/guestmount.pod:149
@@ -20766,6 +21259,8 @@ msgid ""
 " guestfish -d myguest -i\n"
 "\n"
 msgstr ""
+" guestfish -d myguest -i\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish.pod:270
@@ -20779,6 +21274,8 @@ msgid ""
 " guestfish --ro -d myguest -i\n"
 "\n"
 msgstr ""
+" guestfish --ro -d myguest -i\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish.pod:274
@@ -20792,6 +21289,8 @@ msgid ""
 " guestfish --rw -a /dev/Guests/MyGuest -i\n"
 "\n"
 msgstr ""
+" guestfish --rw -a /dev/Guests/MyGuest -i\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish.pod:278
@@ -20807,6 +21306,8 @@ msgid ""
 " guestfish [--ro] -i disk.img\n"
 "\n"
 msgstr ""
+" guestfish [--ro] -i disk.img\n"
+"\n"
 
 #. type: verbatim
 #: ../fish/guestfish.pod:283
@@ -20826,37 +21327,37 @@ msgstr ""
 #. type: =item
 #: ../fish/guestfish.pod:289 ../fuse/guestmount.pod:153
 msgid "B<--keys-from-stdin>"
-msgstr ""
+msgstr "B<--keys-from-stdin>"
 
 #. type: textblock
 #: ../fish/guestfish.pod:291 ../fuse/guestmount.pod:155
 msgid ""
-"Read key or passphrase parameters from stdin.  The default is to try to read "
-"passphrases from the user by opening C</dev/tty>."
+"Read key or passphrase parameters from stdin.  The default is to try to read"
+" passphrases from the user by opening C</dev/tty>."
 msgstr ""
 
 #. type: =item
 #: ../fish/guestfish.pod:294
 msgid "B<--listen>"
-msgstr ""
+msgstr "B<--listen>"
 
 #. type: textblock
 #: ../fish/guestfish.pod:296
 msgid ""
-"Fork into the background and listen for remote commands.  See section L</"
-"REMOTE CONTROL GUESTFISH OVER A SOCKET> below."
+"Fork into the background and listen for remote commands.  See section "
+"L</REMOTE CONTROL GUESTFISH OVER A SOCKET> below."
 msgstr ""
 
 #. type: =item
 #: ../fish/guestfish.pod:299 ../fuse/guestmount.pod:158
 msgid "B<--live>"
-msgstr ""
+msgstr "B<--live>"
 
 #. type: textblock
 #: ../fish/guestfish.pod:301 ../fuse/guestmount.pod:160
 msgid ""
-"Connect to a live virtual machine.  (Experimental, see L<guestfs(3)/"
-"ATTACHING TO RUNNING DAEMONS>)."
+"Connect to a live virtual machine.  (Experimental, see "
+"L<guestfs(3)/ATTACHING TO RUNNING DAEMONS>)."
 msgstr ""
 
 #. type: =item
@@ -20894,21 +21395,21 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish.pod:317
 msgid ""
-"If you don't know what filesystems a disk image contains, you can either run "
-"guestfish without this option, then list the partitions, filesystems and LVs "
-"available (see L</list-partitions>, L</list-filesystems> and L</lvs> "
+"If you don't know what filesystems a disk image contains, you can either run"
+" guestfish without this option, then list the partitions, filesystems and "
+"LVs available (see L</list-partitions>, L</list-filesystems> and L</lvs> "
 "commands), or you can use the L<virt-filesystems(1)> program."
 msgstr ""
 
 #. type: textblock
 #: ../fish/guestfish.pod:323 ../fuse/guestmount.pod:173
 msgid ""
-"The third (and rarely used) part of the mount parameter is the list of mount "
-"options used to mount the underlying filesystem.  If this is not given, then "
-"the mount options are either the empty string or C<ro> (the latter if the "
-"I<--ro> flag is used).  By specifying the mount options, you override this "
-"default choice.  Probably the only time you would use this is to enable ACLs "
-"and/or extended attributes if the filesystem can support them:"
+"The third (and rarely used) part of the mount parameter is the list of mount"
+" options used to mount the underlying filesystem.  If this is not given, "
+"then the mount options are either the empty string or C<ro> (the latter if "
+"the I<--ro> flag is used).  By specifying the mount options, you override "
+"this default choice.  Probably the only time you would use this is to enable"
+" ACLs and/or extended attributes if the filesystem can support them:"
 msgstr ""
 
 #. type: verbatim
@@ -20927,12 +21428,12 @@ msgstr ""
 #. type: =item
 #: ../fish/guestfish.pod:335
 msgid "B<-n>"
-msgstr ""
+msgstr "B<-n>"
 
 #. type: =item
 #: ../fish/guestfish.pod:337
 msgid "B<--no-sync>"
-msgstr ""
+msgstr "B<--no-sync>"
 
 #. type: textblock
 #: ../fish/guestfish.pod:339
@@ -20944,23 +21445,23 @@ msgstr ""
 #. type: =item
 #: ../fish/guestfish.pod:342
 msgid "B<-N type>"
-msgstr ""
+msgstr "B<-N тип>"
 
 #. type: =item
 #: ../fish/guestfish.pod:344
 msgid "B<--new type>"
-msgstr ""
+msgstr "B<--new тип>"
 
 #. type: =item
 #: ../fish/guestfish.pod:346
 msgid "B<-N help>"
-msgstr ""
+msgstr "B<-N help>"
 
 #. type: textblock
 #: ../fish/guestfish.pod:348
 msgid ""
-"Prepare a fresh disk image formatted as \"type\".  This is an alternative to "
-"the I<-a> option: whereas I<-a> adds an existing disk, I<-N> creates a "
+"Prepare a fresh disk image formatted as \"type\".  This is an alternative to"
+" the I<-a> option: whereas I<-a> adds an existing disk, I<-N> creates a "
 "preformatted disk with a filesystem and adds it.  See L</PREPARED DISK "
 "IMAGES> below."
 msgstr ""
@@ -20968,7 +21469,7 @@ msgstr ""
 #. type: =item
 #: ../fish/guestfish.pod:353
 msgid "B<--progress-bars>"
-msgstr ""
+msgstr "B<--progress-bars>"
 
 #. type: textblock
 #: ../fish/guestfish.pod:355
@@ -20985,7 +21486,7 @@ msgstr ""
 #. type: =item
 #: ../fish/guestfish.pod:360
 msgid "B<--no-progress-bars>"
-msgstr ""
+msgstr "B<--no-progress-bars>"
 
 #. type: textblock
 #: ../fish/guestfish.pod:362
@@ -20995,7 +21496,7 @@ msgstr ""
 #. type: =item
 #: ../fish/guestfish.pod:364
 msgid "B<--remote[=pid]>"
-msgstr ""
+msgstr "B<--remote[=pid]>"
 
 #. type: textblock
 #: ../fish/guestfish.pod:366
@@ -21007,12 +21508,12 @@ msgstr ""
 #. type: =item
 #: ../fish/guestfish.pod:369
 msgid "B<-r>"
-msgstr ""
+msgstr "B<-r>"
 
 #. type: =item
 #: ../fish/guestfish.pod:371
 msgid "B<--ro>"
-msgstr ""
+msgstr "B<--ro>"
 
 #. type: textblock
 #: ../fish/guestfish.pod:373
@@ -21024,8 +21525,8 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish.pod:376
 msgid ""
-"The option must always be used if the disk image or virtual machine might be "
-"running, and is generally recommended in cases where you don't need write "
+"The option must always be used if the disk image or virtual machine might be"
+" running, and is generally recommended in cases where you don't need write "
 "access to the disk."
 msgstr ""
 
@@ -21045,7 +21546,7 @@ msgstr ""
 #. type: =item
 #: ../fish/guestfish.pod:386 ../fuse/guestmount.pod:237
 msgid "B<--selinux>"
-msgstr ""
+msgstr "B<--selinux>"
 
 #. type: textblock
 #: ../fish/guestfish.pod:388
@@ -21055,30 +21556,31 @@ msgstr ""
 #. type: =item
 #: ../fish/guestfish.pod:390
 msgid "B<-v>"
-msgstr ""
+msgstr "B<-v>"
 
 #. type: =item
 #: ../fish/guestfish.pod:392
 msgid "B<--verbose>"
-msgstr ""
+msgstr "B<--verbose>"
 
 #. type: textblock
 #: ../fish/guestfish.pod:394
 msgid ""
-"Enable very verbose messages.  This is particularly useful if you find a bug."
+"Enable very verbose messages.  This is particularly useful if you find a "
+"bug."
 msgstr ""
 
 #. type: =item
 #: ../fish/guestfish.pod:397
 msgid "B<-V>"
-msgstr ""
+msgstr "B<-V>"
 
 #. type: =item
 #: ../fish/guestfish.pod:399 ../tools/virt-win-reg.pl:112
 #: ../tools/virt-list-filesystems.pl:69 ../tools/virt-tar.pl:119
 #: ../tools/virt-make-fs.pl:169 ../tools/virt-list-partitions.pl:70
 msgid "B<--version>"
-msgstr ""
+msgstr "B<--version>"
 
 #. type: textblock
 #: ../fish/guestfish.pod:401
@@ -21088,12 +21590,12 @@ msgstr ""
 #. type: =item
 #: ../fish/guestfish.pod:403
 msgid "B<-w>"
-msgstr ""
+msgstr "B<-w>"
 
 #. type: =item
 #: ../fish/guestfish.pod:405
 msgid "B<--rw>"
-msgstr ""
+msgstr "B<--rw>"
 
 #. type: textblock
 #: ../fish/guestfish.pod:407 ../fuse/guestmount.pod:251
@@ -21110,7 +21612,7 @@ msgstr ""
 #. type: =item
 #: ../fish/guestfish.pod:412
 msgid "B<-x>"
-msgstr ""
+msgstr "B<-x>"
 
 #. type: textblock
 #: ../fish/guestfish.pod:414
@@ -21154,9 +21656,9 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish.pod:432
 msgid ""
-"In either command line mode or non-interactive shell, the first command that "
-"gives an error causes the whole shell to exit.  In interactive mode (with a "
-"prompt) if a command fails, you can continue to enter commands."
+"In either command line mode or non-interactive shell, the first command that"
+" gives an error causes the whole shell to exit.  In interactive mode (with a"
+" prompt) if a command fails, you can continue to enter commands."
 msgstr ""
 
 #. type: =head1
@@ -21168,8 +21670,8 @@ msgstr ""
 #: ../fish/guestfish.pod:439
 msgid ""
 "As with L<guestfs(3)>, you must first configure your guest by adding disks, "
-"then launch it, then mount any disks you need, and finally issue actions/"
-"commands.  So the general order of the day is:"
+"then launch it, then mount any disks you need, and finally issue "
+"actions/commands.  So the general order of the day is:"
 msgstr ""
 
 #. type: textblock
@@ -21223,9 +21725,9 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish.pod:478
 msgid ""
-"In libguestfs E<le> 1.10, guestfish, guestmount and virt-rescue defaulted to "
-"opening disk images supplied on the command line for write.  To open a disk "
-"image read-only you have to do I<-a image --ro>."
+"In libguestfs E<le> 1.10, guestfish, guestmount and virt-rescue defaulted to"
+" opening disk images supplied on the command line for write.  To open a disk"
+" image read-only you have to do I<-a image --ro>."
 msgstr ""
 
 #. type: textblock
@@ -21250,16 +21752,16 @@ msgstr ""
 msgid ""
 "This version of guestfish, guestmount and virt-rescue has a I<--rw> option "
 "which does nothing (it is already the default).  However it is highly "
-"recommended that you use this option to indicate that you need write access, "
-"and prepare your scripts for the day when this option will be required for "
+"recommended that you use this option to indicate that you need write access,"
+" and prepare your scripts for the day when this option will be required for "
 "write access."
 msgstr ""
 
 #. type: textblock
 #: ../fish/guestfish.pod:498
 msgid ""
-"B<Note:> This does I<not> affect commands like L</add> and L</mount>, or any "
-"other libguestfs program apart from guestfish and guestmount."
+"B<Note:> This does I<not> affect commands like L</add> and L</mount>, or any"
+" other libguestfs program apart from guestfish and guestmount."
 msgstr ""
 
 #. type: =head1
@@ -21270,8 +21772,8 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish.pod:503
 msgid ""
-"You can quote ordinary parameters using either single or double quotes.  For "
-"example:"
+"You can quote ordinary parameters using either single or double quotes.  For"
+" example:"
 msgstr ""
 
 #. type: verbatim
@@ -21325,7 +21827,8 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish.pod:523
 msgid ""
-"In double-quoted arguments (only) use backslash to insert special characters:"
+"In double-quoted arguments (only) use backslash to insert special "
+"characters:"
 msgstr ""
 
 #. type: =item
@@ -21416,8 +21919,8 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish.pod:562
 msgid ""
-"A character with octal value I<ooo>.  There must be precisely 3 octal digits "
-"(unlike C)."
+"A character with octal value I<ooo>.  There must be precisely 3 octal digits"
+" (unlike C)."
 msgstr ""
 
 #. type: =item
@@ -21487,14 +21990,14 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish.pod:591
 msgid ""
-"Each optional argument can appear at most once.  All optional arguments must "
-"appear after the required ones."
+"Each optional argument can appear at most once.  All optional arguments must"
+" appear after the required ones."
 msgstr ""
 
 #. type: =head1
 #: ../fish/guestfish.pod:594
 msgid "NUMBERS"
-msgstr ""
+msgstr "ЧИСЛА"
 
 #. type: textblock
 #: ../fish/guestfish.pod:596
@@ -21510,14 +22013,14 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish.pod:601
 msgid ""
-"When the command takes a parameter measured in bytes, you can use one of the "
-"following suffixes to specify kilobytes, megabytes and larger sizes:"
+"When the command takes a parameter measured in bytes, you can use one of the"
+" following suffixes to specify kilobytes, megabytes and larger sizes:"
 msgstr ""
 
 #. type: =item
 #: ../fish/guestfish.pod:607
 msgid "B<k> or B<K> or B<KiB>"
-msgstr ""
+msgstr "B<k>, B<K> або B<KiB>"
 
 #. type: textblock
 #: ../fish/guestfish.pod:609
@@ -21527,7 +22030,7 @@ msgstr ""
 #. type: =item
 #: ../fish/guestfish.pod:611
 msgid "B<KB>"
-msgstr ""
+msgstr "B<KB>"
 
 #. type: textblock
 #: ../fish/guestfish.pod:613
@@ -21537,7 +22040,7 @@ msgstr ""
 #. type: =item
 #: ../fish/guestfish.pod:615
 msgid "B<M> or B<MiB>"
-msgstr ""
+msgstr "B<M> або B<MiB>"
 
 #. type: textblock
 #: ../fish/guestfish.pod:617
@@ -21547,7 +22050,7 @@ msgstr ""
 #. type: =item
 #: ../fish/guestfish.pod:619
 msgid "B<MB>"
-msgstr ""
+msgstr "B<MB>"
 
 #. type: textblock
 #: ../fish/guestfish.pod:621
@@ -21557,37 +22060,37 @@ msgstr ""
 #. type: =item
 #: ../fish/guestfish.pod:623
 msgid "B<G> or B<GiB>"
-msgstr ""
+msgstr "B<G> або B<GiB>"
 
 #. type: textblock
 #: ../fish/guestfish.pod:625
 msgid "The size in gigabytes (multiplied by 2**30)."
-msgstr ""
+msgstr "Розмір у гігабайтах (з множником 2**30)."
 
 #. type: =item
 #: ../fish/guestfish.pod:627
 msgid "B<GB>"
-msgstr ""
+msgstr "B<GB>"
 
 #. type: textblock
 #: ../fish/guestfish.pod:629
 msgid "The size in SI 10**9 byte units."
-msgstr ""
+msgstr "Розмір у одиницях СІ: 10**9 байтів."
 
 #. type: =item
 #: ../fish/guestfish.pod:631
 msgid "B<T> or B<TiB>"
-msgstr ""
+msgstr "B<T> або B<TiB>"
 
 #. type: textblock
 #: ../fish/guestfish.pod:633
 msgid "The size in terabytes (multiplied by 2**40)."
-msgstr ""
+msgstr "Розмір у терабайтах (з множником 2**40)."
 
 #. type: =item
 #: ../fish/guestfish.pod:635
 msgid "B<TB>"
-msgstr ""
+msgstr "B<TB>"
 
 #. type: textblock
 #: ../fish/guestfish.pod:637
@@ -21597,7 +22100,7 @@ msgstr ""
 #. type: =item
 #: ../fish/guestfish.pod:639
 msgid "B<P> or B<PiB>"
-msgstr ""
+msgstr "B<P> або B<PiB>"
 
 #. type: textblock
 #: ../fish/guestfish.pod:641
@@ -21607,7 +22110,7 @@ msgstr ""
 #. type: =item
 #: ../fish/guestfish.pod:643
 msgid "B<PB>"
-msgstr ""
+msgstr "B<PB>"
 
 #. type: textblock
 #: ../fish/guestfish.pod:645
@@ -21617,7 +22120,7 @@ msgstr ""
 #. type: =item
 #: ../fish/guestfish.pod:647
 msgid "B<E> or B<EiB>"
-msgstr ""
+msgstr "B<E> або B<EiB>"
 
 #. type: textblock
 #: ../fish/guestfish.pod:649
@@ -21627,7 +22130,7 @@ msgstr ""
 #. type: =item
 #: ../fish/guestfish.pod:651
 msgid "B<EB>"
-msgstr ""
+msgstr "B<EB>"
 
 #. type: textblock
 #: ../fish/guestfish.pod:653
@@ -21637,7 +22140,7 @@ msgstr ""
 #. type: =item
 #: ../fish/guestfish.pod:655
 msgid "B<Z> or B<ZiB>"
-msgstr ""
+msgstr "B<Z> або B<ZiB>"
 
 #. type: textblock
 #: ../fish/guestfish.pod:657
@@ -21647,7 +22150,7 @@ msgstr ""
 #. type: =item
 #: ../fish/guestfish.pod:659
 msgid "B<ZB>"
-msgstr ""
+msgstr "B<ZB>"
 
 #. type: textblock
 #: ../fish/guestfish.pod:661
@@ -21657,7 +22160,7 @@ msgstr ""
 #. type: =item
 #: ../fish/guestfish.pod:663
 msgid "B<Y> or B<YiB>"
-msgstr ""
+msgstr "B<Y> або B<YiB>"
 
 #. type: textblock
 #: ../fish/guestfish.pod:665
@@ -21667,7 +22170,7 @@ msgstr ""
 #. type: =item
 #: ../fish/guestfish.pod:667
 msgid "B<YB>"
-msgstr ""
+msgstr "B<YB>"
 
 #. type: textblock
 #: ../fish/guestfish.pod:669
@@ -21750,8 +22253,8 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish.pod:705
 msgid ""
-"Neither guestfish nor the underlying guestfs API performs wildcard expansion "
-"(globbing) by default.  So for example the following will not do what you "
+"Neither guestfish nor the underlying guestfs API performs wildcard expansion"
+" (globbing) by default.  So for example the following will not do what you "
 "expect:"
 msgstr ""
 
@@ -21786,8 +22289,8 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish.pod:718
 msgid ""
-"runs C<rm-rf> on each path that matches (ie. potentially running the command "
-"many times), equivalent to:"
+"runs C<rm-rf> on each path that matches (ie. potentially running the command"
+" many times), equivalent to:"
 msgstr ""
 
 #. type: verbatim
@@ -21815,7 +22318,7 @@ msgstr ""
 #. type: =head1
 #: ../fish/guestfish.pod:730
 msgid "COMMENTS"
-msgstr ""
+msgstr "КОМЕНТАРІ"
 
 #. type: textblock
 #: ../fish/guestfish.pod:732
@@ -21900,8 +22403,8 @@ msgstr ""
 #: ../fish/guestfish.pod:767
 msgid ""
 "For example it is tedious to create a sequence of files (eg. C</foo.1> "
-"through C</foo.100>) using guestfish commands alone.  However this is simple "
-"if we use a shell script to create the guestfish commands for us:"
+"through C</foo.100>) using guestfish commands alone.  However this is simple"
+" if we use a shell script to create the guestfish commands for us:"
 msgstr ""
 
 #. type: verbatim
@@ -21938,14 +22441,14 @@ msgstr ""
 #. type: =head1
 #: ../fish/guestfish.pod:784
 msgid "PIPES"
-msgstr ""
+msgstr "КАНАЛИ"
 
 #. type: textblock
 #: ../fish/guestfish.pod:786
 msgid ""
 "Use C<command E<lt>spaceE<gt> | command> to pipe the output of the first "
-"command (a guestfish command) to the second command (any host command).  For "
-"example:"
+"command (a guestfish command) to the second command (any host command).  For"
+" example:"
 msgstr ""
 
 #. type: verbatim
@@ -21960,8 +22463,8 @@ msgstr ""
 #: ../fish/guestfish.pod:792
 msgid ""
 "(where C<cat> is the guestfish cat command, but C<awk> is the host awk "
-"program).  The above command would list all accounts in the guest filesystem "
-"which have UID 0, ie. root accounts including backdoors.  Other examples:"
+"program).  The above command would list all accounts in the guest filesystem"
+" which have UID 0, ie. root accounts including backdoors.  Other examples:"
 msgstr ""
 
 #. type: verbatim
@@ -21986,8 +22489,8 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish.pod:806
 msgid ""
-"To use a literal argument which begins with a pipe symbol, you have to quote "
-"it, eg:"
+"To use a literal argument which begins with a pipe symbol, you have to quote"
+" it, eg:"
 msgstr ""
 
 #. type: verbatim
@@ -22006,9 +22509,9 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish.pod:813
 msgid ""
-"If a parameter starts with the character C<~> then the tilde may be expanded "
-"as a home directory path (either C<~> for the current user's home directory, "
-"or C<~user> for another user)."
+"If a parameter starts with the character C<~> then the tilde may be expanded"
+" as a home directory path (either C<~> for the current user's home "
+"directory, or C<~user> for another user)."
 msgstr ""
 
 #. type: textblock
@@ -22097,8 +22600,8 @@ msgstr ""
 #: ../fish/guestfish.pod:851
 msgid ""
 "Before closing a LUKS device you must unmount any logical volumes on it and "
-"deactivate the volume groups by calling C<vg-activate false VG> on each "
-"one.  Then you can close the mapper device:"
+"deactivate the volume groups by calling C<vg-activate false VG> on each one."
+"  Then you can close the mapper device:"
 msgstr ""
 
 #. type: verbatim
@@ -22152,9 +22655,9 @@ msgstr ""
 msgid ""
 "The parameter is rewritten \"behind the scenes\" by looking up the position "
 "where the drive is mounted, prepending that to the path, changing all "
-"backslash characters to forward slash, then resolving the result using L</"
-"case-sensitive-path>.  For example if the E: drive was mounted on C</e> then "
-"the parameter might be rewritten like this:"
+"backslash characters to forward slash, then resolving the result using L"
+"</case-sensitive-path>.  For example if the E: drive was mounted on C</e> "
+"then the parameter might be rewritten like this:"
 msgstr ""
 
 #. type: verbatim
@@ -22235,9 +22738,9 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish.pod:906
 msgid ""
-"Any string of characters can be used instead of C<END>.  The end marker must "
-"appear on a line of its own, without any preceeding or following characters "
-"(not even spaces)."
+"Any string of characters can be used instead of C<END>.  The end marker must"
+" appear on a line of its own, without any preceeding or following characters"
+" (not even spaces)."
 msgstr ""
 
 #. type: textblock
@@ -22336,8 +22839,8 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish.pod:949
 msgid ""
-"The C<eval> statement sets the environment variable C<$GUESTFISH_PID>, which "
-"is how the I<--remote> option knows where to send the commands.  You can "
+"The C<eval> statement sets the environment variable C<$GUESTFISH_PID>, which"
+" is how the I<--remote> option knows where to send the commands.  You can "
 "have several guestfish listener processes running using:"
 msgstr ""
 
@@ -22383,9 +22886,9 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish.pod:970
 msgid ""
-"Remote control happens over a Unix domain socket called C</tmp/.guestfish-"
-"$UID/socket-$PID>, where C<$UID> is the effective user ID of the process, "
-"and C<$PID> is the process ID of the server."
+"Remote control happens over a Unix domain socket called "
+"C</tmp/.guestfish-$UID/socket-$PID>, where C<$UID> is the effective user ID "
+"of the process, and C<$PID> is the process ID of the server."
 msgstr ""
 
 #. type: textblock
@@ -22422,10 +22925,10 @@ msgid ""
 "The type briefly describes how the disk should be sized, partitioned, how "
 "filesystem(s) should be created, and how content should be added.  "
 "Optionally the type can be followed by extra parameters, separated by C<:> "
-"(colon) characters.  For example, I<-N fs> creates a default 100MB, sparsely-"
-"allocated disk, containing a single partition, with the partition formatted "
-"as ext2.  I<-N fs:ext4:1G> is the same, but for an ext4 filesystem on a 1GB "
-"disk instead."
+"(colon) characters.  For example, I<-N fs> creates a default 100MB, "
+"sparsely-allocated disk, containing a single partition, with the partition "
+"formatted as ext2.  I<-N fs:ext4:1G> is the same, but for an ext4 filesystem"
+" on a 1GB disk instead."
 msgstr ""
 
 #. type: textblock
@@ -22436,8 +22939,8 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish.pod:1000
 msgid ""
-"Note that the prepared filesystem is not mounted.  You would usually have to "
-"use the C<mount /dev/sda1 /> command or add the I<-m /dev/sda1> option."
+"Note that the prepared filesystem is not mounted.  You would usually have to"
+" use the C<mount /dev/sda1 /> command or add the I<-m /dev/sda1> option."
 msgstr ""
 
 #. type: textblock
@@ -22502,8 +23005,8 @@ msgstr ""
 #: ../fish/guestfish.pod:1027
 msgid ""
 "When a command that supports progress bars takes longer than two seconds to "
-"run, and if progress bars are enabled, then you will see one appearing below "
-"the command:"
+"run, and if progress bars are enabled, then you will see one appearing below"
+" the command:"
 msgstr ""
 
 #. type: verbatim
@@ -22530,8 +23033,8 @@ msgstr ""
 #: ../fish/guestfish.pod:1041
 msgid ""
 "Progress bars are enabled by default when guestfish is used interactively.  "
-"You can enable them even for non-interactive modes using I<--progress-bars>, "
-"and you can disable them completely using I<--no-progress-bars>."
+"You can enable them even for non-interactive modes using I<--progress-bars>,"
+" and you can disable them completely using I<--no-progress-bars>."
 msgstr ""
 
 #. type: =head1
@@ -22549,7 +23052,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish.pod:1051
 msgid "help"
-msgstr ""
+msgstr "help"
 
 #. type: verbatim
 #: ../fish/guestfish.pod:1053
@@ -22559,11 +23062,14 @@ msgid ""
 " help cmd\n"
 "\n"
 msgstr ""
+" help\n"
+" help команда\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish.pod:1056
 msgid "Without any parameter, this provides general help."
-msgstr ""
+msgstr "Без параметра показує загальну довідкову інформацію."
 
 #. type: textblock
 #: ../fish/guestfish.pod:1058
@@ -22588,12 +23094,12 @@ msgstr ""
 #. type: =head1
 #: ../fish/guestfish.pod:1066
 msgid "COMMANDS"
-msgstr ""
+msgstr "КОМАНДИ"
 
 #. type: =head1
 #: ../fish/guestfish.pod:1070 ../test-tool/libguestfs-test-tool.pod:77
 msgid "EXIT CODE"
-msgstr ""
+msgstr "КОД ВИХОДУ"
 
 #. type: textblock
 #: ../fish/guestfish.pod:1072
@@ -22605,7 +23111,7 @@ msgstr ""
 #. type: =item
 #: ../fish/guestfish.pod:1079
 msgid "EDITOR"
-msgstr ""
+msgstr "РЕДАКТОР"
 
 #. type: textblock
 #: ../fish/guestfish.pod:1081
@@ -22653,7 +23159,7 @@ msgstr ""
 #. type: =item
 #: ../fish/guestfish.pod:1101
 msgid "HOME"
-msgstr ""
+msgstr "ДОМІВКА"
 
 #. type: textblock
 #: ../fish/guestfish.pod:1103
@@ -22684,7 +23190,7 @@ msgstr ""
 #. type: =item
 #: ../fish/guestfish.pod:1137
 msgid "PAGER"
-msgstr ""
+msgstr "РОЗБИТТЯ НА СТОРІНКИ"
 
 #. type: textblock
 #: ../fish/guestfish.pod:1139
@@ -22696,7 +23202,7 @@ msgstr ""
 #. type: =head1
 #: ../fish/guestfish.pod:1155 ../fuse/guestmount.pod:264
 msgid "FILES"
-msgstr ""
+msgstr "ФАЙЛИ"
 
 #. type: =item
 #: ../fish/guestfish.pod:1159 ../fuse/guestmount.pod:268
@@ -22746,8 +23252,8 @@ msgstr ""
 #: ../fish/guestfish.pod:1177
 msgid ""
 "If compiled with GNU readline support, then these files can be used to "
-"configure readline.  For further information, please see L<readline(3)/"
-"INITIALIZATION FILE>."
+"configure readline.  For further information, please see "
+"L<readline(3)/INITIALIZATION FILE>."
 msgstr ""
 
 #. type: textblock
@@ -22768,8 +23274,8 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish.pod:1187
 msgid ""
-"Variables that you can set in inputrc that change the behaviour of guestfish "
-"in useful ways include:"
+"Variables that you can set in inputrc that change the behaviour of guestfish"
+" in useful ways include:"
 msgstr ""
 
 #. type: =item
@@ -22812,19 +23318,19 @@ msgstr ""
 msgid ""
 "When using the I<-N> or I<--new> option, the prepared disk or filesystem "
 "will be created in the file C<test1.img> in the current directory.  The "
-"second use of I<-N> will use C<test2.img> and so on.  Any existing file with "
-"the same name will be overwritten."
+"second use of I<-N> will use C<test2.img> and so on.  Any existing file with"
+" the same name will be overwritten."
 msgstr ""
 
 #. type: textblock
 #: ../fish/guestfish.pod:1216
 msgid ""
-"L<guestfs(3)>, L<http://libguestfs.org/>, L<virt-cat(1)>, L<virt-copy-in(1)"
-">, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, L<virt-filesystems(1)"
-">, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, L<virt-list-partitions"
-"(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, L<virt-rescue(1)>, L<virt-resize(1)"
-">, L<virt-tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<virt-win-reg(1)"
-">, L<display(1)>, L<hexedit(1)>."
+"L<guestfs(3)>, L<http://libguestfs.org/>, L<virt-cat(1)>, L<virt-copy-"
+"in(1)>, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, L<virt-"
+"filesystems(1)>, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, L<virt-"
+"list-partitions(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, L<virt-rescue(1)>, L"
+"<virt-resize(1)>, L<virt-tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L"
+"<virt-win-reg(1)>, L<display(1)>, L<hexedit(1)>."
 msgstr ""
 
 #. type: textblock
@@ -22850,6 +23356,10 @@ msgid ""
 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for "
 "more details."
 msgstr ""
+"Ця програма поширюється у сподіванні, що вона буде корисною, але БЕЗ БУДЬ-"
+"ЯКИХ ГАРАНТІЙНИХ ЗОБОВ’ЯЗАНЬ; навіть без очевидної гарантії ПРАЦЕЗДАТНОСТІ "
+"або ПРИДАТНОСТІ ДЛЯ ВИКОРИСТАННЯ З ПЕВНОЮ МЕТОЮ. Докладніше про це можна "
+"дізнатися з GNU General Public License."
 
 #. type: textblock
 #: ../fish/guestfish.pod:1257 ../test-tool/libguestfs-test-tool.pod:112
@@ -22857,9 +23367,9 @@ msgstr ""
 #: ../tools/virt-list-filesystems.pl:220 ../tools/virt-tar.pl:319
 #: ../tools/virt-make-fs.pl:582 ../tools/virt-list-partitions.pl:287
 msgid ""
-"You should have received a copy of the GNU General Public License along with "
-"this program; if not, write to the Free Software Foundation, Inc., 675 Mass "
-"Ave, Cambridge, MA 02139, USA."
+"You should have received a copy of the GNU General Public License along with"
+" this program; if not, write to the Free Software Foundation, Inc., 675 Mass"
+" Ave, Cambridge, MA 02139, USA."
 msgstr ""
 
 #. type: =head2
@@ -22888,14 +23398,14 @@ msgstr ""
 #: ../fish/guestfish-actions.pod:22
 msgid ""
 "If you just want to add an ISO file (often you use this as an efficient way "
-"to transfer large files into the guest), then you should probably use L</add-"
-"drive-ro> instead."
+"to transfer large files into the guest), then you should probably use L"
+"</add-drive-ro> instead."
 msgstr ""
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:35
 msgid "add-domain"
-msgstr ""
+msgstr "add-domain"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:37
@@ -22913,9 +23423,10 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish-actions.pod:41
 msgid ""
-"This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
-"It works by connecting to libvirt, requesting the domain and domain XML from "
-"libvirt, parsing it for disks, and calling L</add-drive-opts> on each one."
+"This function adds the disk(s) attached to the named libvirt domain C<dom>."
+"  It works by connecting to libvirt, requesting the domain and domain XML "
+"from libvirt, parsing it for disks, and calling L</add-drive-opts> on each "
+"one."
 msgstr ""
 
 #. type: textblock
@@ -22931,13 +23442,14 @@ msgstr ""
 #: ../fish/guestfish-actions.pod:3134 ../fish/guestfish-actions.pod:3307
 #: ../fish/guestfish-actions.pod:3442
 msgid ""
-"This command has one or more optional arguments.  See L</OPTIONAL ARGUMENTS>."
+"This command has one or more optional arguments.  See L</OPTIONAL "
+"ARGUMENTS>."
 msgstr ""
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:81
 msgid "add-drive"
-msgstr ""
+msgstr "add-drive"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:83
@@ -22946,6 +23458,8 @@ msgid ""
 " add-drive filename\n"
 "\n"
 msgstr ""
+" add-drive назва_файла\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:85
@@ -22961,19 +23475,19 @@ msgid ""
 "Automatic detection of the format opens you up to a potential security hole "
 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
-"you should think about replacing calls to this function with calls to L</add-"
-"drive-opts>, and specifying the format."
+"you should think about replacing calls to this function with calls to L"
+"</add-drive-opts>, and specifying the format."
 msgstr ""
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:96
 msgid "add-drive-opts"
-msgstr ""
+msgstr "add-drive-opts"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:98
 msgid "add"
-msgstr ""
+msgstr "add"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:100
@@ -22986,27 +23500,27 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish-actions.pod:127
 msgid ""
-"This forces the image format.  If you omit this (or use L</add-drive> or L</"
-"add-drive-ro>) then the format is automatically detected.  Possible formats "
-"include C<raw> and C<qcow2>."
+"This forces the image format.  If you omit this (or use L</add-drive> or L"
+"</add-drive-ro>) then the format is automatically detected.  Possible "
+"formats include C<raw> and C<qcow2>."
 msgstr ""
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:138
 msgid ""
-"This rarely-used option lets you emulate the behaviour of the deprecated L</"
-"add-drive-with-if> call (q.v.)"
+"This rarely-used option lets you emulate the behaviour of the deprecated L"
+"</add-drive-with-if> call (q.v.)"
 msgstr ""
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:145
 msgid "add-drive-ro"
-msgstr ""
+msgstr "add-drive-ro"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:147
 msgid "add-ro"
-msgstr ""
+msgstr "add-ro"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:149
@@ -23093,8 +23607,8 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish-actions.pod:195
 msgid ""
-"Close the current Augeas handle and free up any resources used by it.  After "
-"calling this, you have to call L</aug-init> again before you can use any "
+"Close the current Augeas handle and free up any resources used by it.  After"
+" calling this, you have to call L</aug-init> again before you can use any "
 "other Augeas functions."
 msgstr ""
 
@@ -23351,8 +23865,8 @@ msgstr ""
 msgid ""
 "This command returns a list of all optional groups that this daemon knows "
 "about.  Note this returns both supported and unsupported groups.  To find "
-"out which ones the daemon can actually support you have to call L</"
-"available> on each member of the returned list."
+"out which ones the daemon can actually support you have to call "
+"L</available> on each member of the returned list."
 msgstr ""
 
 #. type: textblock
@@ -23489,8 +24003,8 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish-actions.pod:504
 msgid ""
-"See also L</blockdev-getss> for the real sector size of the device, and L</"
-"blockdev-getsize64> for the more useful I<size in bytes>."
+"See also L</blockdev-getss> for the real sector size of the device, and L"
+"</blockdev-getsize64> for the more useful I<size in bytes>."
 msgstr ""
 
 #. type: =head2
@@ -23574,9 +24088,9 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish-actions.pod:596
 msgid ""
-"Thus L</case-sensitive-path> (\"/Windows/System32\")  might return C<\"/"
-"WINDOWS/system32\"> (the exact return value would depend on details of how "
-"the directories were originally created under Windows)."
+"Thus L</case-sensitive-path> (\"/Windows/System32\")  might return "
+"C<\"/WINDOWS/system32\"> (the exact return value would depend on details of "
+"how the directories were originally created under Windows)."
 msgstr ""
 
 #. type: textblock
@@ -23587,7 +24101,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:606
 msgid "cat"
-msgstr ""
+msgstr "cat"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:608
@@ -23596,20 +24110,22 @@ msgid ""
 " cat path\n"
 "\n"
 msgstr ""
+" cat шлях\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:612
 msgid ""
 "Note that this function cannot correctly handle binary files (specifically, "
 "files containing C<\\0> character which is treated as end of string).  For "
-"those you need to use the L</read-file> or L</download> functions which have "
-"a more complex interface."
+"those you need to use the L</read-file> or L</download> functions which have"
+" a more complex interface."
 msgstr ""
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:620
 msgid "checksum"
-msgstr ""
+msgstr "checksum"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:622
@@ -23632,7 +24148,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:669
 msgid "checksum-device"
-msgstr ""
+msgstr "checksum-device"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:671
@@ -23646,8 +24162,8 @@ msgstr ""
 #: ../fish/guestfish-actions.pod:673
 msgid ""
 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
-"device named C<device>.  For the types of checksums supported see the L</"
-"checksum> command."
+"device named C<device>.  For the types of checksums supported see the "
+"L</checksum> command."
 msgstr ""
 
 #. type: =head2
@@ -23666,7 +24182,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:695
 msgid "chmod"
-msgstr ""
+msgstr "chmod"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:697
@@ -23679,7 +24195,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:708
 msgid "chown"
-msgstr ""
+msgstr "chown"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:710
@@ -23706,8 +24222,8 @@ msgstr ""
 #: ../fish/guestfish-actions.pod:727
 msgid ""
 "The single parameter is an argv-style list of arguments.  The first element "
-"is the name of the program to run.  Subsequent elements are parameters.  The "
-"list must be non-empty (ie. must contain a program name).  Note that the "
+"is the name of the program to run.  Subsequent elements are parameters.  The"
+" list must be non-empty (ie. must contain a program name).  Note that the "
 "command runs directly, and is I<not> invoked via the shell (see L</sh>)."
 msgstr ""
 
@@ -23764,7 +24280,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:790
 msgid "cp"
-msgstr ""
+msgstr "cp"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:792
@@ -23777,7 +24293,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:797
 msgid "cp-a"
-msgstr ""
+msgstr "cp-a"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:799
@@ -23790,7 +24306,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:804
 msgid "dd"
-msgstr ""
+msgstr "dd"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:806
@@ -23804,14 +24320,14 @@ msgstr ""
 #: ../fish/guestfish-actions.pod:813
 msgid ""
 "If the destination is a device, it must be as large or larger than the "
-"source file or device, otherwise the copy will fail.  This command cannot do "
-"partial copies (see L</copy-size>)."
+"source file or device, otherwise the copy will fail.  This command cannot do"
+" partial copies (see L</copy-size>)."
 msgstr ""
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:817
 msgid "df"
-msgstr ""
+msgstr "df"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:819
@@ -23820,6 +24336,8 @@ msgid ""
 " df\n"
 "\n"
 msgstr ""
+" df\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:823 ../fish/guestfish-actions.pod:834
@@ -23832,7 +24350,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:827
 msgid "df-h"
-msgstr ""
+msgstr "df-h"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:829
@@ -23841,11 +24359,13 @@ msgid ""
 " df-h\n"
 "\n"
 msgstr ""
+" df-h\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:838
 msgid "dmesg"
-msgstr ""
+msgstr "dmesg"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:840
@@ -23854,19 +24374,21 @@ msgid ""
 " dmesg\n"
 "\n"
 msgstr ""
+" dmesg\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:846
 msgid ""
-"Another way to get the same information is to enable verbose messages with "
-"L</set-verbose> or by setting the environment variable C<LIBGUESTFS_DEBUG=1> "
+"Another way to get the same information is to enable verbose messages with L"
+"</set-verbose> or by setting the environment variable C<LIBGUESTFS_DEBUG=1> "
 "before running the program."
 msgstr ""
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:851
 msgid "download"
-msgstr ""
+msgstr "download"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:853
@@ -23884,7 +24406,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:864
 msgid "download-offset"
-msgstr ""
+msgstr "download-offset"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:866
@@ -23923,7 +24445,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:897
 msgid "du"
-msgstr ""
+msgstr "du"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:899
@@ -23932,11 +24454,13 @@ msgid ""
 " du path\n"
 "\n"
 msgstr ""
+" du шлях\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:911
 msgid "e2fsck-f"
-msgstr ""
+msgstr "e2fsck-f"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:913
@@ -23974,7 +24498,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:933
 msgid "egrep"
-msgstr ""
+msgstr "egrep"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:935
@@ -23987,7 +24511,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:943
 msgid "egrepi"
-msgstr ""
+msgstr "egrepi"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:945
@@ -24000,7 +24524,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:953
 msgid "equal"
-msgstr ""
+msgstr "equal"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:955
@@ -24009,11 +24533,13 @@ msgid ""
 " equal file1 file2\n"
 "\n"
 msgstr ""
+" equal файл1 файл2\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:962
 msgid "exists"
-msgstr ""
+msgstr "exists"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:964
@@ -24022,16 +24548,18 @@ msgid ""
 " exists path\n"
 "\n"
 msgstr ""
+" exists шлях\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:969
 msgid "See also L</is-file>, L</is-dir>, L</stat>."
-msgstr ""
+msgstr "Див. також L</is-file>, L</is-dir>, L</stat>."
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:971
 msgid "fallocate"
-msgstr ""
+msgstr "fallocate"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:973
@@ -24040,11 +24568,13 @@ msgid ""
 " fallocate path len\n"
 "\n"
 msgstr ""
+" fallocate шлях довжина\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:990
 msgid "fallocate64"
-msgstr ""
+msgstr "fallocate64"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:992
@@ -24053,6 +24583,8 @@ msgid ""
 " fallocate64 path len\n"
 "\n"
 msgstr ""
+" fallocate64 шлях довжина\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:998
@@ -24072,7 +24604,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1010
 msgid "fgrep"
-msgstr ""
+msgstr "fgrep"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1012
@@ -24081,11 +24613,13 @@ msgid ""
 " fgrep pattern path\n"
 "\n"
 msgstr ""
+" fgrep шаблон шлях\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1020
 msgid "fgrepi"
-msgstr ""
+msgstr "fgrepi"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1022
@@ -24094,11 +24628,13 @@ msgid ""
 " fgrepi pattern path\n"
 "\n"
 msgstr ""
+" fgrepi шаблон шлях\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1030
 msgid "file"
-msgstr ""
+msgstr "file"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1032
@@ -24107,6 +24643,8 @@ msgid ""
 " file path\n"
 "\n"
 msgstr ""
+" file шлях\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:1048
@@ -24118,7 +24656,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1051
 msgid "file-architecture"
-msgstr ""
+msgstr "file-architecture"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1053
@@ -24127,11 +24665,13 @@ msgid ""
 " file-architecture filename\n"
 "\n"
 msgstr ""
+" file-architecture назва_файла\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1156
 msgid "filesize"
-msgstr ""
+msgstr "filesize"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1158
@@ -24140,6 +24680,8 @@ msgid ""
 " filesize file\n"
 "\n"
 msgstr ""
+" filesize файл\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:1162
@@ -24151,7 +24693,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1166
 msgid "fill"
-msgstr ""
+msgstr "fill"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1168
@@ -24165,14 +24707,14 @@ msgstr ""
 #: ../fish/guestfish-actions.pod:1174
 msgid ""
 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
-"L</truncate-size>.  To create a file with a pattern of repeating bytes use "
-"L</fill-pattern>."
+"L</truncate-size>.  To create a file with a pattern of repeating bytes use L"
+"</fill-pattern>."
 msgstr ""
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1179
 msgid "fill-pattern"
-msgstr ""
+msgstr "fill-pattern"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1181
@@ -24186,15 +24728,15 @@ msgstr ""
 #: ../fish/guestfish-actions.pod:1183
 msgid ""
 "This function is like L</fill> except that it creates a new file of length "
-"C<len> containing the repeating pattern of bytes in C<pattern>.  The pattern "
-"is truncated if necessary to ensure the length of the file is exactly C<len> "
-"bytes."
+"C<len> containing the repeating pattern of bytes in C<pattern>.  The pattern"
+" is truncated if necessary to ensure the length of the file is exactly "
+"C<len> bytes."
 msgstr ""
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1188
 msgid "find"
-msgstr ""
+msgstr "find"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1190
@@ -24203,6 +24745,8 @@ msgid ""
 " find directory\n"
 "\n"
 msgstr ""
+" find каталог\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:1204
@@ -24212,12 +24756,12 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish-actions.pod:1217
 msgid "See also L</find0>."
-msgstr ""
+msgstr "Див. також L</find0>."
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1222
 msgid "find0"
-msgstr ""
+msgstr "find0"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1224
@@ -24226,6 +24770,8 @@ msgid ""
 " find0 directory (files|-)\n"
 "\n"
 msgstr ""
+" find0 каталог (файли|-)\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:1230
@@ -24236,7 +24782,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1257
 msgid "findfs-label"
-msgstr ""
+msgstr "findfs-label"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1259
@@ -24245,16 +24791,18 @@ msgid ""
 " findfs-label label\n"
 "\n"
 msgstr ""
+" findfs-label мітка\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:1265
 msgid "To find the label of a filesystem, use L</vfs-label>."
-msgstr ""
+msgstr "Для визначення мітки файлової системи скористайтеся L</vfs-label>."
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1267
 msgid "findfs-uuid"
-msgstr ""
+msgstr "findfs-uuid"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1269
@@ -24263,16 +24811,18 @@ msgid ""
 " findfs-uuid uuid\n"
 "\n"
 msgstr ""
+" findfs-uuid uuid\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:1275
 msgid "To find the UUID of a filesystem, use L</vfs-uuid>."
-msgstr ""
+msgstr "Для визначення UUID файлової системи скористайтеся L</vfs-uuid>."
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1277
 msgid "fsck"
-msgstr ""
+msgstr "fsck"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1279
@@ -24281,11 +24831,13 @@ msgid ""
 " fsck fstype device\n"
 "\n"
 msgstr ""
+" fsck тип_файлової_системи пристрій\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1309
 msgid "get-append"
-msgstr ""
+msgstr "get-append"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1311
@@ -24294,11 +24846,13 @@ msgid ""
 " get-append\n"
 "\n"
 msgstr ""
+" get-append\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1318
 msgid "get-attach-method"
-msgstr ""
+msgstr "get-attach-method"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1320
@@ -24307,6 +24861,8 @@ msgid ""
 " get-attach-method\n"
 "\n"
 msgstr ""
+" get-attach-method\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:1322
@@ -24316,7 +24872,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1324
 msgid "get-autosync"
-msgstr ""
+msgstr "get-autosync"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1326
@@ -24325,11 +24881,13 @@ msgid ""
 " get-autosync\n"
 "\n"
 msgstr ""
+" get-autosync\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1330
 msgid "get-direct"
-msgstr ""
+msgstr "get-direct"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1332
@@ -24338,11 +24896,13 @@ msgid ""
 " get-direct\n"
 "\n"
 msgstr ""
+" get-direct\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1336
 msgid "get-e2label"
-msgstr ""
+msgstr "get-e2label"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1338
@@ -24351,11 +24911,13 @@ msgid ""
 " get-e2label device\n"
 "\n"
 msgstr ""
+" get-e2label пристрій\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1350
 msgid "get-e2uuid"
-msgstr ""
+msgstr "get-e2uuid"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1352
@@ -24364,11 +24926,13 @@ msgid ""
 " get-e2uuid device\n"
 "\n"
 msgstr ""
+" get-e2uuid пристрій\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1364
 msgid "get-memsize"
-msgstr ""
+msgstr "get-memsize"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1366
@@ -24377,19 +24941,21 @@ msgid ""
 " get-memsize\n"
 "\n"
 msgstr ""
+" get-memsize\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:1371
 msgid ""
 "If L</set-memsize> was not called on this handle, and if "
-"C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
-"value for memsize."
+"C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default"
+" value for memsize."
 msgstr ""
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1378
 msgid "get-network"
-msgstr ""
+msgstr "get-network"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1380
@@ -24398,11 +24964,13 @@ msgid ""
 " get-network\n"
 "\n"
 msgstr ""
+" get-network\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1384
 msgid "get-path"
-msgstr ""
+msgstr "get-path"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1386
@@ -24411,6 +24979,8 @@ msgid ""
 " get-path\n"
 "\n"
 msgstr ""
+" get-path\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1393
@@ -24428,7 +24998,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1399
 msgid "get-pid"
-msgstr ""
+msgstr "get-pid"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1401
@@ -24442,11 +25012,13 @@ msgid ""
 " get-pid\n"
 "\n"
 msgstr ""
+" get-pid\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1410
 msgid "get-qemu"
-msgstr ""
+msgstr "get-qemu"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1412
@@ -24455,11 +25027,13 @@ msgid ""
 " get-qemu\n"
 "\n"
 msgstr ""
+" get-qemu\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1419
 msgid "get-recovery-proc"
-msgstr ""
+msgstr "get-recovery-proc"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1421
@@ -24468,11 +25042,13 @@ msgid ""
 " get-recovery-proc\n"
 "\n"
 msgstr ""
+" get-recovery-proc\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1425
 msgid "get-selinux"
-msgstr ""
+msgstr "get-selinux"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1427
@@ -24481,6 +25057,8 @@ msgid ""
 " get-selinux\n"
 "\n"
 msgstr ""
+" get-selinux\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:1429
@@ -24492,7 +25070,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1435
 msgid "get-state"
-msgstr ""
+msgstr "get-state"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1437
@@ -24501,11 +25079,13 @@ msgid ""
 " get-state\n"
 "\n"
 msgstr ""
+" get-state\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1444
 msgid "get-trace"
-msgstr ""
+msgstr "get-trace"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1446
@@ -24514,11 +25094,13 @@ msgid ""
 " get-trace\n"
 "\n"
 msgstr ""
+" get-trace\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1450
 msgid "get-umask"
-msgstr ""
+msgstr "get-umask"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1452
@@ -24527,18 +25109,20 @@ msgid ""
 " get-umask\n"
 "\n"
 msgstr ""
+" get-umask\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:1454
 msgid ""
-"Return the current umask.  By default the umask is C<022> unless it has been "
-"set by calling L</umask>."
+"Return the current umask.  By default the umask is C<022> unless it has been"
+" set by calling L</umask>."
 msgstr ""
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1457
 msgid "get-verbose"
-msgstr ""
+msgstr "get-verbose"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1459
@@ -24547,11 +25131,13 @@ msgid ""
 " get-verbose\n"
 "\n"
 msgstr ""
+" get-verbose\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1463
 msgid "getcon"
-msgstr ""
+msgstr "getcon"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1465
@@ -24560,6 +25146,8 @@ msgid ""
 " getcon\n"
 "\n"
 msgstr ""
+" getcon\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:1469
@@ -24569,7 +25157,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1472
 msgid "getxattr"
-msgstr ""
+msgstr "getxattr"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1474
@@ -24578,6 +25166,8 @@ msgid ""
 " getxattr path name\n"
 "\n"
 msgstr ""
+" getxattr шлях назва\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:1476
@@ -24591,8 +25181,8 @@ msgstr ""
 #: ../fish/guestfish-actions.pod:1480 ../fish/guestfish-actions.pod:2507
 msgid ""
 "Normally it is better to get all extended attributes from a file in one go "
-"by calling L</getxattrs>.  However some Linux filesystem implementations are "
-"buggy and do not provide a way to list out attributes.  For these "
+"by calling L</getxattrs>.  However some Linux filesystem implementations are"
+" buggy and do not provide a way to list out attributes.  For these "
 "filesystems (notably ntfs-3g)  you have to know the names of the extended "
 "attributes you want in advance and call this function."
 msgstr ""
@@ -24600,12 +25190,12 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish-actions.pod:1490
 msgid "See also: L</getxattrs>, L</lgetxattr>, L<attr(5)>."
-msgstr ""
+msgstr "Див. також L</getxattrs>, L</lgetxattr>, L<attr(5)>."
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1492
 msgid "getxattrs"
-msgstr ""
+msgstr "getxattrs"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1494
@@ -24614,16 +25204,18 @@ msgid ""
 " getxattrs path\n"
 "\n"
 msgstr ""
+" getxattrs шлях\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:1502
 msgid "See also: L</lgetxattrs>, L<attr(5)>."
-msgstr ""
+msgstr "Див. також L</lgetxattrs>, L<attr(5)>."
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1504
 msgid "glob-expand"
-msgstr ""
+msgstr "glob-expand"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1506
@@ -24632,11 +25224,13 @@ msgid ""
 " glob-expand pattern\n"
 "\n"
 msgstr ""
+" glob-expand шаблон\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1519
 msgid "grep"
-msgstr ""
+msgstr "grep"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1521
@@ -24645,11 +25239,13 @@ msgid ""
 " grep regex path\n"
 "\n"
 msgstr ""
+" grepi формальний_вираз шлях\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1529
 msgid "grepi"
-msgstr ""
+msgstr "grepi"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1531
@@ -24658,11 +25254,13 @@ msgid ""
 " grepi regex path\n"
 "\n"
 msgstr ""
+" grepi формальний_вираз шлях\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1539
 msgid "grub-install"
-msgstr ""
+msgstr "grub-install"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1541
@@ -24671,11 +25269,13 @@ msgid ""
 " grub-install root device\n"
 "\n"
 msgstr ""
+" grub-install кореневий пристрій\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1557
 msgid "head"
-msgstr ""
+msgstr "head"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1559
@@ -24684,11 +25284,13 @@ msgid ""
 " head path\n"
 "\n"
 msgstr ""
+" head шлях\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1567
 msgid "head-n"
-msgstr ""
+msgstr "head-n"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1569
@@ -24701,7 +25303,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1582
 msgid "hexdump"
-msgstr ""
+msgstr "hexdump"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1584
@@ -24710,11 +25312,13 @@ msgid ""
 " hexdump path\n"
 "\n"
 msgstr ""
+" hexdump шлях\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1592
 msgid "initrd-cat"
-msgstr ""
+msgstr "initrd-cat"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1594
@@ -24723,16 +25327,18 @@ msgid ""
 " initrd-cat initrdpath filename\n"
 "\n"
 msgstr ""
+" initrd-cat шлях_initrd назва_файла\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:1606
 msgid "See also L</initrd-list>."
-msgstr ""
+msgstr "Див. також L</initrd-list>."
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1611
 msgid "initrd-list"
-msgstr ""
+msgstr "initrd-list"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1613
@@ -24741,11 +25347,13 @@ msgid ""
 " initrd-list path\n"
 "\n"
 msgstr ""
+" initrd-list шлях\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1625
 msgid "inotify-add-watch"
-msgstr ""
+msgstr "inotify-add-watch"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1627
@@ -24754,11 +25362,13 @@ msgid ""
 " inotify-add-watch path mask\n"
 "\n"
 msgstr ""
+" inotify-add-watch шлях маска\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1639
 msgid "inotify-close"
-msgstr ""
+msgstr "inotify-close"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1641
@@ -24767,11 +25377,13 @@ msgid ""
 " inotify-close\n"
 "\n"
 msgstr ""
+" inotify-close\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1647
 msgid "inotify-files"
-msgstr ""
+msgstr "inotify-files"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1649
@@ -24780,6 +25392,8 @@ msgid ""
 " inotify-files\n"
 "\n"
 msgstr ""
+" inotify-files\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:1651
@@ -24792,7 +25406,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1655
 msgid "inotify-init"
-msgstr ""
+msgstr "inotify-init"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1657
@@ -24805,11 +25419,11 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish-actions.pod:1663
 msgid ""
-"C<maxevents> is the maximum number of events which will be queued up between "
-"calls to L</inotify-read> or L</inotify-files>.  If this is passed as C<0>, "
-"then the kernel (or previously set)  default is used.  For Linux 2.6.29 the "
-"default was 16384 events.  Beyond this limit, the kernel throws away events, "
-"but records the fact that it threw them away by setting a flag "
+"C<maxevents> is the maximum number of events which will be queued up between"
+" calls to L</inotify-read> or L</inotify-files>.  If this is passed as C<0>,"
+" then the kernel (or previously set)  default is used.  For Linux 2.6.29 the"
+" default was 16384 events.  Beyond this limit, the kernel throws away "
+"events, but records the fact that it threw them away by setting a flag "
 "C<IN_Q_OVERFLOW> in the returned structure list (see L</inotify-read>)."
 msgstr ""
 
@@ -24817,16 +25431,16 @@ msgstr ""
 #: ../fish/guestfish-actions.pod:1673
 msgid ""
 "Before any events are generated, you have to add some watches to the "
-"internal watch list.  See: L</inotify-add-watch>, L</inotify-rm-watch> and "
-"L</inotify-watch-all>."
+"internal watch list.  See: L</inotify-add-watch>, L</inotify-rm-watch> and L"
+"</inotify-watch-all>."
 msgstr ""
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:1679
 msgid ""
-"Queued up events should be read periodically by calling L</inotify-read> (or "
-"L</inotify-files> which is just a helpful wrapper around L</inotify-read>).  "
-"If you don't read the events out often enough then you risk the internal "
+"Queued up events should be read periodically by calling L</inotify-read> (or"
+" L</inotify-files> which is just a helpful wrapper around L</inotify-read>)."
+"  If you don't read the events out often enough then you risk the internal "
 "queue overflowing."
 msgstr ""
 
@@ -24840,7 +25454,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1695
 msgid "inotify-read"
-msgstr ""
+msgstr "inotify-read"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1697
@@ -24849,11 +25463,13 @@ msgid ""
 " inotify-read\n"
 "\n"
 msgstr ""
+" inotify-read\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1710
 msgid "inotify-rm-watch"
-msgstr ""
+msgstr "inotify-rm-watch"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1712
@@ -24871,7 +25487,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1717
 msgid "inspect-get-arch"
-msgstr ""
+msgstr "inspect-get-arch"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1719
@@ -24880,6 +25496,8 @@ msgid ""
 " inspect-get-arch root\n"
 "\n"
 msgstr ""
+" inspect-get-arch корінь\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:1721
@@ -24891,7 +25509,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1730
 msgid "inspect-get-distro"
-msgstr ""
+msgstr "inspect-get-distro"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1732
@@ -24900,6 +25518,8 @@ msgid ""
 " inspect-get-distro root\n"
 "\n"
 msgstr ""
+" inspect-get-distro корінь\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1813
@@ -24924,7 +25544,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1846
 msgid "inspect-get-filesystems"
-msgstr ""
+msgstr "inspect-get-filesystems"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1848
@@ -24933,6 +25553,8 @@ msgid ""
 " inspect-get-filesystems root\n"
 "\n"
 msgstr ""
+" inspect-get-filesystems корінь\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:1858
@@ -24944,7 +25566,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1861
 msgid "inspect-get-format"
-msgstr ""
+msgstr "inspect-get-format"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1863
@@ -24953,11 +25575,13 @@ msgid ""
 " inspect-get-format root\n"
 "\n"
 msgstr ""
+" inspect-get-format корінь\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1892
 msgid "inspect-get-hostname"
-msgstr ""
+msgstr "inspect-get-hostname"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1894
@@ -24966,6 +25590,8 @@ msgid ""
 " inspect-get-hostname root\n"
 "\n"
 msgstr ""
+" inspect-get-hostname корінь\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1904
@@ -24983,7 +25609,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1970
 msgid "inspect-get-major-version"
-msgstr ""
+msgstr "inspect-get-major-version"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1972
@@ -24992,11 +25618,13 @@ msgid ""
 " inspect-get-major-version root\n"
 "\n"
 msgstr ""
+" inspect-get-major-version корінь\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:1988
 msgid "inspect-get-minor-version"
-msgstr ""
+msgstr "inspect-get-minor-version"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:1990
@@ -25005,6 +25633,8 @@ msgid ""
 " inspect-get-minor-version root\n"
 "\n"
 msgstr ""
+" inspect-get-minor-version корінь\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:1997
@@ -25016,7 +25646,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2000
 msgid "inspect-get-mountpoints"
-msgstr ""
+msgstr "inspect-get-mountpoints"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2002
@@ -25025,14 +25655,16 @@ msgid ""
 " inspect-get-mountpoints root\n"
 "\n"
 msgstr ""
+" inspect-get-mountpoints корінь\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:2021
 msgid ""
 "For operating systems like Windows which still use drive letters, this call "
 "will only return an entry for the first drive \"mounted on\" C</>.  For "
-"information about the mapping of drive letters to partitions, see L</inspect-"
-"get-drive-mappings>."
+"information about the mapping of drive letters to partitions, see L"
+"</inspect-get-drive-mappings>."
 msgstr ""
 
 #. type: textblock
@@ -25045,7 +25677,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2030
 msgid "inspect-get-package-format"
-msgstr ""
+msgstr "inspect-get-package-format"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2032
@@ -25054,6 +25686,8 @@ msgid ""
 " inspect-get-package-format root\n"
 "\n"
 msgstr ""
+" inspect-get-package-format корінь\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:2034
@@ -25067,7 +25701,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2049
 msgid "inspect-get-package-management"
-msgstr ""
+msgstr "inspect-get-package-management"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2051
@@ -25076,6 +25710,8 @@ msgid ""
 " inspect-get-package-management root\n"
 "\n"
 msgstr ""
+" inspect-get-package-management корінь\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:2053
@@ -25089,7 +25725,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2070
 msgid "inspect-get-product-name"
-msgstr ""
+msgstr "inspect-get-product-name"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2072
@@ -25098,6 +25734,8 @@ msgid ""
 " inspect-get-product-name root\n"
 "\n"
 msgstr ""
+" inspect-get-product-name корінь\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2084
@@ -25122,7 +25760,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2111
 msgid "inspect-get-roots"
-msgstr ""
+msgstr "inspect-get-roots"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2113
@@ -25131,6 +25769,8 @@ msgid ""
 " inspect-get-roots\n"
 "\n"
 msgstr ""
+" inspect-get-roots\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:2115
@@ -25150,7 +25790,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2124
 msgid "inspect-get-type"
-msgstr ""
+msgstr "inspect-get-type"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2126
@@ -25159,6 +25799,8 @@ msgid ""
 " inspect-get-type root\n"
 "\n"
 msgstr ""
+" inspect-get-type корінь\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2156
@@ -25176,7 +25818,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2169
 msgid "inspect-get-windows-systemroot"
-msgstr ""
+msgstr "inspect-get-windows-systemroot"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2171
@@ -25185,11 +25827,13 @@ msgid ""
 " inspect-get-windows-systemroot root\n"
 "\n"
 msgstr ""
+" inspect-get-windows-systemroot корінь\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2182
 msgid "inspect-is-live"
-msgstr ""
+msgstr "inspect-is-live"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2184
@@ -25198,6 +25842,8 @@ msgid ""
 " inspect-is-live root\n"
 "\n"
 msgstr ""
+" inspect-is-live корінь\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:2186
@@ -25209,7 +25855,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2192
 msgid "inspect-is-multipart"
-msgstr ""
+msgstr "inspect-is-multipart"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2194
@@ -25218,6 +25864,8 @@ msgid ""
 " inspect-is-multipart root\n"
 "\n"
 msgstr ""
+" inspect-is-multipart корінь\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:2196
@@ -25229,7 +25877,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2202
 msgid "inspect-is-netinst"
-msgstr ""
+msgstr "inspect-is-netinst"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2204
@@ -25238,6 +25886,8 @@ msgid ""
 " inspect-is-netinst root\n"
 "\n"
 msgstr ""
+" inspect-is-netinst корінь\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:2206
@@ -25251,7 +25901,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2214
 msgid "inspect-list-applications"
-msgstr ""
+msgstr "inspect-list-applications"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2216
@@ -25260,13 +25910,15 @@ msgid ""
 " inspect-list-applications root\n"
 "\n"
 msgstr ""
+" inspect-list-applications кореневий_каталог\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:2220
 msgid ""
-"I<Note:> This call works differently from other parts of the inspection "
-"API.  You have to call L</inspect-os>, then L</inspect-get-mountpoints>, "
-"then mount up the disks, before calling this.  Listing applications is a "
+"I<Note:> This call works differently from other parts of the inspection API."
+"  You have to call L</inspect-os>, then L</inspect-get-mountpoints>, then "
+"mount up the disks, before calling this.  Listing applications is a "
 "significantly more difficult operation which requires access to the full "
 "filesystem.  Also note that unlike the other L</inspect-get-*> calls which "
 "are just returning data cached in the libguestfs handle, this call actually "
@@ -25276,7 +25928,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2310
 msgid "inspect-os"
-msgstr ""
+msgstr "inspect-os"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2312
@@ -25285,20 +25937,22 @@ msgid ""
 " inspect-os\n"
 "\n"
 msgstr ""
+" inspect-os\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:2327
 msgid ""
 "You can pass the root string(s) returned to other L</inspect-get-*> "
-"functions in order to query further information about each operating system, "
-"such as the name and version."
+"functions in order to query further information about each operating system,"
+" such as the name and version."
 msgstr ""
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:2332
 msgid ""
-"This function uses other libguestfs features such as L</mount-ro> and L</"
-"umount-all> in order to mount and unmount filesystems and look at the "
+"This function uses other libguestfs features such as L</mount-ro> and L"
+"</umount-all> in order to mount and unmount filesystems and look at the "
 "contents.  This should be called with no disks currently mounted.  The "
 "function may also use Augeas, so any existing Augeas handle will be closed."
 msgstr ""
@@ -25307,12 +25961,12 @@ msgstr ""
 #: ../fish/guestfish-actions.pod:2344 ../fish/guestfish-actions.pod:2542
 #: ../fish/guestfish-actions.pod:2601
 msgid "See also L</list-filesystems>."
-msgstr ""
+msgstr "Див. також L</list-filesystems>."
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2346
 msgid "is-blockdev"
-msgstr ""
+msgstr "is-blockdev"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2348
@@ -25321,6 +25975,8 @@ msgid ""
 " is-blockdev path\n"
 "\n"
 msgstr ""
+" is-blockdev шлях\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:2353 ../fish/guestfish-actions.pod:2371
@@ -25328,12 +25984,12 @@ msgstr ""
 #: ../fish/guestfish-actions.pod:2409 ../fish/guestfish-actions.pod:2443
 #: ../fish/guestfish-actions.pod:2452
 msgid "See also L</stat>."
-msgstr ""
+msgstr "Див. також L</stat>."
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2355
 msgid "is-busy"
-msgstr ""
+msgstr "is-busy"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2357
@@ -25342,11 +25998,13 @@ msgid ""
 " is-busy\n"
 "\n"
 msgstr ""
+" is-busy\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2364
 msgid "is-chardev"
-msgstr ""
+msgstr "is-chardev"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2366
@@ -25355,11 +26013,13 @@ msgid ""
 " is-chardev path\n"
 "\n"
 msgstr ""
+" is-chardev шлях\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2373
 msgid "is-config"
-msgstr ""
+msgstr "is-config"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2375
@@ -25368,11 +26028,13 @@ msgid ""
 " is-config\n"
 "\n"
 msgstr ""
+" is-config\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2382
 msgid "is-dir"
-msgstr ""
+msgstr "is-dir"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2384
@@ -25381,11 +26043,13 @@ msgid ""
 " is-dir path\n"
 "\n"
 msgstr ""
+" is-dir шлях\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2392
 msgid "is-fifo"
-msgstr ""
+msgstr "is-fifo"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2394
@@ -25394,11 +26058,13 @@ msgid ""
 " is-fifo path\n"
 "\n"
 msgstr ""
+" is-fifo шлях\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2401
 msgid "is-file"
-msgstr ""
+msgstr "is-file"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2403
@@ -25407,11 +26073,13 @@ msgid ""
 " is-file path\n"
 "\n"
 msgstr ""
+" is-file шлях\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2411
 msgid "is-launching"
-msgstr ""
+msgstr "is-launching"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2413
@@ -25420,11 +26088,13 @@ msgid ""
 " is-launching\n"
 "\n"
 msgstr ""
+" is-launching\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2420
 msgid "is-lv"
-msgstr ""
+msgstr "is-lv"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2422
@@ -25433,11 +26103,13 @@ msgid ""
 " is-lv device\n"
 "\n"
 msgstr ""
+" is-lv пристрій\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2427
 msgid "is-ready"
-msgstr ""
+msgstr "is-ready"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2429
@@ -25446,11 +26118,13 @@ msgid ""
 " is-ready\n"
 "\n"
 msgstr ""
+" is-ready\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2436
 msgid "is-socket"
-msgstr ""
+msgstr "is-socket"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2438
@@ -25459,11 +26133,13 @@ msgid ""
 " is-socket path\n"
 "\n"
 msgstr ""
+" is-socket шлях\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2445
 msgid "is-symlink"
-msgstr ""
+msgstr "is-symlink"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2447
@@ -25472,6 +26148,8 @@ msgid ""
 " is-symlink path\n"
 "\n"
 msgstr ""
+" is-symlink шлях\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2454
@@ -25502,7 +26180,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2469
 msgid "kill-subprocess"
-msgstr ""
+msgstr "kill-subprocess"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2471
@@ -25511,11 +26189,13 @@ msgid ""
 " kill-subprocess\n"
 "\n"
 msgstr ""
+" kill-subprocess\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2475
 msgid "launch"
-msgstr ""
+msgstr "launch"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2477
@@ -25529,11 +26209,13 @@ msgid ""
 " launch\n"
 "\n"
 msgstr ""
+" launch\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2487
 msgid "lchown"
-msgstr ""
+msgstr "lchown"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2489
@@ -25542,19 +26224,21 @@ msgid ""
 " lchown owner group path\n"
 "\n"
 msgstr ""
+" lchown власник група шлях\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:2491
 msgid ""
-"Change the file owner to C<owner> and group to C<group>.  This is like L</"
-"chown> but if C<path> is a symlink then the link itself is changed, not the "
-"target."
+"Change the file owner to C<owner> and group to C<group>.  This is like "
+"L</chown> but if C<path> is a symlink then the link itself is changed, not "
+"the target."
 msgstr ""
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2499
 msgid "lgetxattr"
-msgstr ""
+msgstr "lgetxattr"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2501
@@ -25563,16 +26247,18 @@ msgid ""
 " lgetxattr path name\n"
 "\n"
 msgstr ""
+" lgetxattr шлях назва\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:2517
 msgid "See also: L</lgetxattrs>, L</getxattr>, L<attr(5)>."
-msgstr ""
+msgstr "Див. також L</lgetxattrs>, L</getxattr>, L<attr(5)>."
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2519
 msgid "lgetxattrs"
-msgstr ""
+msgstr "lgetxattrs"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2521
@@ -25581,6 +26267,8 @@ msgid ""
 " lgetxattrs path\n"
 "\n"
 msgstr ""
+" lgetxattrs шлях\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:2523
@@ -25605,7 +26293,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2534
 msgid "list-devices"
-msgstr ""
+msgstr "list-devices"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2536
@@ -25614,6 +26302,8 @@ msgid ""
 " list-devices\n"
 "\n"
 msgstr ""
+" list-devices\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2544
@@ -25645,7 +26335,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2557
 msgid "list-filesystems"
-msgstr ""
+msgstr "list-filesystems"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2559
@@ -25654,13 +26344,15 @@ msgid ""
 " list-filesystems\n"
 "\n"
 msgstr ""
+" list-filesystems\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:2578
 msgid ""
 "This command runs other libguestfs commands, which might include L</mount> "
-"and L</umount>, and therefore you should use this soon after launch and only "
-"when nothing is mounted."
+"and L</umount>, and therefore you should use this soon after launch and only"
+" when nothing is mounted."
 msgstr ""
 
 #. type: textblock
@@ -25676,7 +26368,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2590
 msgid "list-partitions"
-msgstr ""
+msgstr "list-partitions"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2592
@@ -25685,18 +26377,20 @@ msgid ""
 " list-partitions\n"
 "\n"
 msgstr ""
+" list-partitions\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:2598
 msgid ""
-"This does not return logical volumes.  For that you will need to call L</"
-"lvs>."
+"This does not return logical volumes.  For that you will need to call "
+"L</lvs>."
 msgstr ""
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2603
 msgid "ll"
-msgstr ""
+msgstr "ll"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2605
@@ -25705,11 +26399,13 @@ msgid ""
 " ll directory\n"
 "\n"
 msgstr ""
+" ll каталог\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2613
 msgid "ln"
-msgstr ""
+msgstr "ln"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2615
@@ -25718,11 +26414,13 @@ msgid ""
 " ln target linkname\n"
 "\n"
 msgstr ""
+" ln призначення назва_посилання\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2619
 msgid "ln-f"
-msgstr ""
+msgstr "ln-f"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2621
@@ -25731,11 +26429,13 @@ msgid ""
 " ln-f target linkname\n"
 "\n"
 msgstr ""
+" ln-f призначення назва_посилання\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2626
 msgid "ln-s"
-msgstr ""
+msgstr "ln-s"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2628
@@ -25744,11 +26444,13 @@ msgid ""
 " ln-s target linkname\n"
 "\n"
 msgstr ""
+" ln-s призначення назва_посилання\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2632
 msgid "ln-sf"
-msgstr ""
+msgstr "ln-sf"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2634
@@ -25757,11 +26459,13 @@ msgid ""
 " ln-sf target linkname\n"
 "\n"
 msgstr ""
+" ln-sf призначення назва_посилання\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2639
 msgid "lremovexattr"
-msgstr ""
+msgstr "lremovexattr"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2641
@@ -25774,14 +26478,14 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish-actions.pod:2643
 msgid ""
-"This is the same as L</removexattr>, but if C<path> is a symbolic link, then "
-"it removes an extended attribute of the link itself."
+"This is the same as L</removexattr>, but if C<path> is a symbolic link, then"
+" it removes an extended attribute of the link itself."
 msgstr ""
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2647
 msgid "ls"
-msgstr ""
+msgstr "ls"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2649
@@ -25790,6 +26494,8 @@ msgid ""
 " ls directory\n"
 "\n"
 msgstr ""
+" ls каталог\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:2655
@@ -25801,7 +26507,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2658
 msgid "lsetxattr"
-msgstr ""
+msgstr "lsetxattr"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2660
@@ -25814,14 +26520,14 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish-actions.pod:2662
 msgid ""
-"This is the same as L</setxattr>, but if C<path> is a symbolic link, then it "
-"sets an extended attribute of the link itself."
+"This is the same as L</setxattr>, but if C<path> is a symbolic link, then it"
+" sets an extended attribute of the link itself."
 msgstr ""
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2666
 msgid "lstat"
-msgstr ""
+msgstr "lstat"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2668
@@ -25830,18 +26536,20 @@ msgid ""
 " lstat path\n"
 "\n"
 msgstr ""
+" lstat шлях\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:2672
 msgid ""
-"This is the same as L</stat> except that if C<path> is a symbolic link, then "
-"the link is stat-ed, not the file it refers to."
+"This is the same as L</stat> except that if C<path> is a symbolic link, then"
+" the link is stat-ed, not the file it refers to."
 msgstr ""
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2678
 msgid "lstatlist"
-msgstr ""
+msgstr "lstatlist"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2680
@@ -25855,15 +26563,15 @@ msgstr ""
 #: ../fish/guestfish-actions.pod:2682
 msgid ""
 "This call allows you to perform the L</lstat> operation on multiple files, "
-"where all files are in the directory C<path>.  C<names> is the list of files "
-"from this directory."
+"where all files are in the directory C<path>.  C<names> is the list of files"
+" from this directory."
 msgstr ""
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:2691
 msgid ""
-"This call is intended for programs that want to efficiently list a directory "
-"contents without making many round-trips.  See also L</lxattrlist> for a "
+"This call is intended for programs that want to efficiently list a directory"
+" contents without making many round-trips.  See also L</lxattrlist> for a "
 "similarly efficient call for getting extended attributes.  Very long "
 "directory listings might cause the protocol message size to be exceeded, "
 "causing this call to fail.  The caller must split up such requests into "
@@ -25873,7 +26581,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2699
 msgid "luks-add-key"
-msgstr ""
+msgstr "luks-add-key"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2701
@@ -25886,8 +26594,8 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish-actions.pod:2708
 msgid ""
-"Note that if C<keyslot> already contains a key, then this command will "
-"fail.  You have to use L</luks-kill-slot> first to remove that key."
+"Note that if C<keyslot> already contains a key, then this command will fail."
+"  You have to use L</luks-kill-slot> first to remove that key."
 msgstr ""
 
 #. type: textblock
@@ -25902,7 +26610,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2715
 msgid "luks-close"
-msgstr ""
+msgstr "luks-close"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2717
@@ -25911,20 +26619,22 @@ msgid ""
 " luks-close device\n"
 "\n"
 msgstr ""
+" luks-close пристрій\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:2719
 msgid ""
-"This closes a LUKS device that was created earlier by L</luks-open> or L</"
-"luks-open-ro>.  The C<device> parameter must be the name of the LUKS mapping "
-"device (ie. C</dev/mapper/mapname>) and I<not> the name of the underlying "
-"block device."
+"This closes a LUKS device that was created earlier by L</luks-open> or L"
+"</luks-open-ro>.  The C<device> parameter must be the name of the LUKS "
+"mapping device (ie. C</dev/mapper/mapname>) and I<not> the name of the "
+"underlying block device."
 msgstr ""
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2725
 msgid "luks-format"
-msgstr ""
+msgstr "luks-format"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2727
@@ -25937,7 +26647,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2740
 msgid "luks-format-cipher"
-msgstr ""
+msgstr "luks-format-cipher"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2742
@@ -25957,7 +26667,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2753
 msgid "luks-kill-slot"
-msgstr ""
+msgstr "luks-kill-slot"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2755
@@ -25970,7 +26680,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2764
 msgid "luks-open"
-msgstr ""
+msgstr "luks-open"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2766
@@ -25995,7 +26705,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2790
 msgid "luks-open-ro"
-msgstr ""
+msgstr "luks-open-ro"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2792
@@ -26008,13 +26718,14 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish-actions.pod:2794
 msgid ""
-"This is the same as L</luks-open> except that a read-only mapping is created."
+"This is the same as L</luks-open> except that a read-only mapping is "
+"created."
 msgstr ""
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2800
 msgid "lvcreate"
-msgstr ""
+msgstr "lvcreate"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2802
@@ -26027,7 +26738,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2807
 msgid "lvm-canonical-lv-name"
-msgstr ""
+msgstr "lvm-canonical-lv-name"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2809
@@ -26040,12 +26751,12 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish-actions.pod:2818
 msgid "See also L</is-lv>."
-msgstr ""
+msgstr "Див. також L</is-lv>."
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2820
 msgid "lvm-clear-filter"
-msgstr ""
+msgstr "lvm-clear-filter"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2822
@@ -26054,18 +26765,20 @@ msgid ""
 " lvm-clear-filter\n"
 "\n"
 msgstr ""
+" lvm-clear-filter\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:2824
 msgid ""
-"This undoes the effect of L</lvm-set-filter>.  LVM will be able to see every "
-"block device."
+"This undoes the effect of L</lvm-set-filter>.  LVM will be able to see every"
+" block device."
 msgstr ""
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2830
 msgid "lvm-remove-all"
-msgstr ""
+msgstr "lvm-remove-all"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2832
@@ -26074,11 +26787,13 @@ msgid ""
 " lvm-remove-all\n"
 "\n"
 msgstr ""
+" lvm-remove-all\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2840
 msgid "lvm-set-filter"
-msgstr ""
+msgstr "lvm-set-filter"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2842
@@ -26087,11 +26802,13 @@ msgid ""
 " lvm-set-filter 'devices ...'\n"
 "\n"
 msgstr ""
+" lvm-set-filter 'пристрої...'\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2867
 msgid "lvremove"
-msgstr ""
+msgstr "lvremove"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2869
@@ -26100,11 +26817,13 @@ msgid ""
 " lvremove device\n"
 "\n"
 msgstr ""
+" lvremove пристрій\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2877
 msgid "lvrename"
-msgstr ""
+msgstr "lvrename"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2879
@@ -26117,7 +26836,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2883
 msgid "lvresize"
-msgstr ""
+msgstr "lvresize"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2885
@@ -26130,7 +26849,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2891
 msgid "lvresize-free"
-msgstr ""
+msgstr "lvresize-free"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2893
@@ -26143,7 +26862,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2901
 msgid "lvs"
-msgstr ""
+msgstr "lvs"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2903
@@ -26152,16 +26871,18 @@ msgid ""
 " lvs\n"
 "\n"
 msgstr ""
+" lvs\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:2911
 msgid "See also L</lvs-full>, L</list-filesystems>."
-msgstr ""
+msgstr "Див. також L</lvs-full>, L</list-filesystems>."
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2913
 msgid "lvs-full"
-msgstr ""
+msgstr "lvs-full"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2915
@@ -26170,11 +26891,13 @@ msgid ""
 " lvs-full\n"
 "\n"
 msgstr ""
+" lvs-full\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2920
 msgid "lvuuid"
-msgstr ""
+msgstr "lvuuid"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2922
@@ -26183,11 +26906,13 @@ msgid ""
 " lvuuid device\n"
 "\n"
 msgstr ""
+" lvuuid пристрій\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2926
 msgid "lxattrlist"
-msgstr ""
+msgstr "lxattrlist"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2928
@@ -26200,18 +26925,18 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish-actions.pod:2944
 msgid ""
-"This call is intended for programs that want to efficiently list a directory "
-"contents without making many round-trips.  See also L</lstatlist> for a "
+"This call is intended for programs that want to efficiently list a directory"
+" contents without making many round-trips.  See also L</lstatlist> for a "
 "similarly efficient call for getting standard stats.  Very long directory "
 "listings might cause the protocol message size to be exceeded, causing this "
-"call to fail.  The caller must split up such requests into smaller groups of "
-"names."
+"call to fail.  The caller must split up such requests into smaller groups of"
+" names."
 msgstr ""
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2952
 msgid "mkdir"
-msgstr ""
+msgstr "mkdir"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2954
@@ -26220,11 +26945,13 @@ msgid ""
 " mkdir path\n"
 "\n"
 msgstr ""
+" mkdir шлях\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2958
 msgid "mkdir-mode"
-msgstr ""
+msgstr "mkdir-mode"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2960
@@ -26233,16 +26960,18 @@ msgid ""
 " mkdir-mode path mode\n"
 "\n"
 msgstr ""
+" mkdir-mode шлях режим\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:2969
 msgid "See also L</mkdir>, L</umask>"
-msgstr ""
+msgstr "Див. також L</mkdir>, L</umask>"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2971
 msgid "mkdir-p"
-msgstr ""
+msgstr "mkdir-p"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2973
@@ -26251,11 +26980,13 @@ msgid ""
 " mkdir-p path\n"
 "\n"
 msgstr ""
+" mkdir-p шлях\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:2978
 msgid "mkdtemp"
-msgstr ""
+msgstr "mkdtemp"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:2980
@@ -26264,11 +26995,13 @@ msgid ""
 " mkdtemp template\n"
 "\n"
 msgstr ""
+" mkdtemp шаблон\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3001
 msgid "mke2fs-J"
-msgstr ""
+msgstr "mke2fs-J"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3003
@@ -26281,12 +27014,12 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish-actions.pod:3011
 msgid "See also L</mke2journal>."
-msgstr ""
+msgstr "Див. також L</mke2journal>."
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3013
 msgid "mke2fs-JL"
-msgstr ""
+msgstr "mke2fs-JL"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3015
@@ -26299,12 +27032,12 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish-actions.pod:3020
 msgid "See also L</mke2journal-L>."
-msgstr ""
+msgstr "Див. також L</mke2journal-L>."
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3022
 msgid "mke2fs-JU"
-msgstr ""
+msgstr "mke2fs-JU"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3024
@@ -26317,12 +27050,12 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish-actions.pod:3029
 msgid "See also L</mke2journal-U>."
-msgstr ""
+msgstr "Див. також L</mke2journal-U>."
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3031
 msgid "mke2journal"
-msgstr ""
+msgstr "mke2journal"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3033
@@ -26335,7 +27068,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3040
 msgid "mke2journal-L"
-msgstr ""
+msgstr "mke2journal-L"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3042
@@ -26348,7 +27081,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3046
 msgid "mke2journal-U"
-msgstr ""
+msgstr "mke2journal-U"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3048
@@ -26361,7 +27094,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3052
 msgid "mkfifo"
-msgstr ""
+msgstr "mkfifo"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3054
@@ -26370,6 +27103,8 @@ msgid ""
 " mkfifo mode path\n"
 "\n"
 msgstr ""
+" mkfifo режим шлях\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:3056
@@ -26381,7 +27116,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3062
 msgid "mkfs"
-msgstr ""
+msgstr "mkfs"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3064
@@ -26390,11 +27125,13 @@ msgid ""
 " mkfs fstype device\n"
 "\n"
 msgstr ""
+" mkfs тип_файлової_системи пристрій\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3070
 msgid "mkfs-b"
-msgstr ""
+msgstr "mkfs-b"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3072
@@ -26415,7 +27152,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3089
 msgid "mkfs-opts"
-msgstr ""
+msgstr "mkfs-opts"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3091
@@ -26428,7 +27165,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3136
 msgid "mkmountpoint"
-msgstr ""
+msgstr "mkmountpoint"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3138
@@ -26441,8 +27178,8 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish-actions.pod:3140
 msgid ""
-"L</mkmountpoint> and L</rmmountpoint> are specialized calls that can be used "
-"to create extra mountpoints before mounting the first filesystem."
+"L</mkmountpoint> and L</rmmountpoint> are specialized calls that can be used"
+" to create extra mountpoints before mounting the first filesystem."
 msgstr ""
 
 #. type: textblock
@@ -26464,15 +27201,15 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish-actions.pod:3175
 msgid ""
-"Autosync [see L</set-autosync>, this is set by default on handles] can cause "
-"L</umount-all> to be called when the handle is closed which can also trigger "
-"these issues."
+"Autosync [see L</set-autosync>, this is set by default on handles] can cause"
+" L</umount-all> to be called when the handle is closed which can also "
+"trigger these issues."
 msgstr ""
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3179
 msgid "mknod"
-msgstr ""
+msgstr "mknod"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3181
@@ -26496,7 +27233,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3201
 msgid "mknod-b"
-msgstr ""
+msgstr "mknod-b"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3203
@@ -26517,7 +27254,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3211
 msgid "mknod-c"
-msgstr ""
+msgstr "mknod-c"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3213
@@ -26538,7 +27275,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3221
 msgid "mkswap"
-msgstr ""
+msgstr "mkswap"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3223
@@ -26547,11 +27284,13 @@ msgid ""
 " mkswap device\n"
 "\n"
 msgstr ""
+" mkswap пристрій\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3227
 msgid "mkswap-L"
-msgstr ""
+msgstr "mkswap-L"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3229
@@ -26560,11 +27299,13 @@ msgid ""
 " mkswap-L label device\n"
 "\n"
 msgstr ""
+" mkswap-L мітка пристрій\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3237
 msgid "mkswap-U"
-msgstr ""
+msgstr "mkswap-U"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3239
@@ -26573,11 +27314,13 @@ msgid ""
 " mkswap-U uuid device\n"
 "\n"
 msgstr ""
+" mkswap-U uuid пристрій\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3243
 msgid "mkswap-file"
-msgstr ""
+msgstr "mkswap-file"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3245
@@ -26586,6 +27329,8 @@ msgid ""
 " mkswap-file path\n"
 "\n"
 msgstr ""
+" mkswap-file шлях\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:3249
@@ -26597,7 +27342,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3252
 msgid "modprobe"
-msgstr ""
+msgstr "modprobe"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3254
@@ -26606,11 +27351,13 @@ msgid ""
 " modprobe modulename\n"
 "\n"
 msgstr ""
+" modprobe назва_модуля\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3261
 msgid "mount"
-msgstr ""
+msgstr "mount"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3263
@@ -26619,17 +27366,19 @@ msgid ""
 " mount device mountpoint\n"
 "\n"
 msgstr ""
+" mount пристрій точка_монтування\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:3279
 msgid ""
 "B<Important note:> When you use this call, the filesystem options C<sync> "
 "and C<noatime> are set implicitly.  This was originally done because we "
-"thought it would improve reliability, but it turns out that I<-o sync> has a "
-"very large negative performance impact and negligible effect on "
+"thought it would improve reliability, but it turns out that I<-o sync> has a"
+" very large negative performance impact and negligible effect on "
 "reliability.  Therefore we recommend that you avoid using L</mount> in any "
-"code that needs performance, and instead use L</mount-options> (use an empty "
-"string for the first parameter if you don't want any options)."
+"code that needs performance, and instead use L</mount-options> (use an empty"
+" string for the first parameter if you don't want any options)."
 msgstr ""
 
 #. type: =head2
@@ -26648,7 +27397,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3309
 msgid "mount-loop"
-msgstr ""
+msgstr "mount-loop"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3311
@@ -26661,7 +27410,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3317
 msgid "mount-options"
-msgstr ""
+msgstr "mount-options"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3319
@@ -26681,7 +27430,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3329
 msgid "mount-ro"
-msgstr ""
+msgstr "mount-ro"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3331
@@ -26690,18 +27439,20 @@ msgid ""
 " mount-ro device mountpoint\n"
 "\n"
 msgstr ""
+" mount-ro пристрій точка_монтування\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:3333
 msgid ""
-"This is the same as the L</mount> command, but it mounts the filesystem with "
-"the read-only (I<-o ro>) flag."
+"This is the same as the L</mount> command, but it mounts the filesystem with"
+" the read-only (I<-o ro>) flag."
 msgstr ""
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3336
 msgid "mount-vfs"
-msgstr ""
+msgstr "mount-vfs"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3338
@@ -26714,14 +27465,14 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish-actions.pod:3340
 msgid ""
-"This is the same as the L</mount> command, but it allows you to set both the "
-"mount options and the vfstype as for the L<mount(8)> I<-o> and I<-t> flags."
+"This is the same as the L</mount> command, but it allows you to set both the"
+" mount options and the vfstype as for the L<mount(8)> I<-o> and I<-t> flags."
 msgstr ""
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3344
 msgid "mountpoints"
-msgstr ""
+msgstr "mountpoints"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3346
@@ -26730,6 +27481,8 @@ msgid ""
 " mountpoints\n"
 "\n"
 msgstr ""
+" mountpoints\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:3348
@@ -26742,7 +27495,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3352
 msgid "mounts"
-msgstr ""
+msgstr "mounts"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3354
@@ -26751,16 +27504,18 @@ msgid ""
 " mounts\n"
 "\n"
 msgstr ""
+" mounts\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:3361
 msgid "See also: L</mountpoints>"
-msgstr ""
+msgstr "Див. також L</mountpoints>"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3363
 msgid "mv"
-msgstr ""
+msgstr "mv"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3365
@@ -26769,11 +27524,13 @@ msgid ""
 " mv src dest\n"
 "\n"
 msgstr ""
+" mv джерело призначення\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3370
 msgid "ntfs-3g-probe"
-msgstr ""
+msgstr "ntfs-3g-probe"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3372
@@ -26786,7 +27543,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3386
 msgid "ntfsresize"
-msgstr ""
+msgstr "ntfsresize"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3388
@@ -26795,6 +27552,8 @@ msgid ""
 " ntfsresize device\n"
 "\n"
 msgstr ""
+" ntfsresize пристрій\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3410
@@ -26815,14 +27574,14 @@ msgid ""
 "After the resize operation, the filesystem is always marked as requiring a "
 "consistency check (for safety).  You have to boot into Windows to perform "
 "this check and clear this condition.  If you I<don't> set the C<force> "
-"option then it is not possible to call L</ntfsresize-opts> multiple times on "
-"a single filesystem without booting into Windows between each resize."
+"option then it is not possible to call L</ntfsresize-opts> multiple times on"
+" a single filesystem without booting into Windows between each resize."
 msgstr ""
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3444
 msgid "ntfsresize-size"
-msgstr ""
+msgstr "ntfsresize-size"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3446
@@ -26842,7 +27601,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3458
 msgid "part-add"
-msgstr ""
+msgstr "part-add"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3460
@@ -26862,14 +27621,14 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish-actions.pod:3474
 msgid ""
-"Creating a partition which covers the whole disk is not so easy.  Use L</"
-"part-disk> to do that."
+"Creating a partition which covers the whole disk is not so easy.  Use L"
+"</part-disk> to do that."
 msgstr ""
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3477
 msgid "part-del"
-msgstr ""
+msgstr "part-del"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3479
@@ -26882,7 +27641,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3487
 msgid "part-disk"
-msgstr ""
+msgstr "part-disk"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3489
@@ -26891,6 +27650,8 @@ msgid ""
 " part-disk device parttype\n"
 "\n"
 msgstr ""
+" part-disk пристрій тип_розділу\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:3491
@@ -26902,14 +27663,14 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish-actions.pod:3495
 msgid ""
-"C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
-"possible values are described in L</part-init>."
+"C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other"
+" possible values are described in L</part-init>."
 msgstr ""
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3501
 msgid "part-get-bootable"
-msgstr ""
+msgstr "part-get-bootable"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3503
@@ -26922,12 +27683,12 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish-actions.pod:3508
 msgid "See also L</part-set-bootable>."
-msgstr ""
+msgstr "Див. також L</part-set-bootable>."
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3510
 msgid "part-get-mbr-id"
-msgstr ""
+msgstr "part-get-mbr-id"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3512
@@ -26940,15 +27701,15 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish-actions.pod:3517 ../fish/guestfish-actions.pod:3655
 msgid ""
-"Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
-"undefined results for other partition table types (see L</part-get-"
+"Note that only MBR (old DOS-style) partitions have type bytes.  You will get"
+" undefined results for other partition table types (see L</part-get-"
 "parttype>)."
 msgstr ""
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3521
 msgid "part-get-parttype"
-msgstr ""
+msgstr "part-get-parttype"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3523
@@ -26957,6 +27718,8 @@ msgid ""
 " part-get-parttype device\n"
 "\n"
 msgstr ""
+" part-get-parttype пристрій\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:3528
@@ -26969,7 +27732,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3533
 msgid "part-init"
-msgstr ""
+msgstr "part-init"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3535
@@ -26989,7 +27752,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3604
 msgid "part-list"
-msgstr ""
+msgstr "part-list"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3606
@@ -26998,6 +27761,8 @@ msgid ""
 " part-list device\n"
 "\n"
 msgstr ""
+" part-list device\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:3621
@@ -27009,7 +27774,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3634
 msgid "part-set-bootable"
-msgstr ""
+msgstr "part-set-bootable"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3636
@@ -27022,7 +27787,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3645
 msgid "part-set-mbr-id"
-msgstr ""
+msgstr "part-set-mbr-id"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3647
@@ -27035,7 +27800,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3659
 msgid "part-set-name"
-msgstr ""
+msgstr "part-set-name"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3661
@@ -27048,7 +27813,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3669
 msgid "part-to-dev"
-msgstr ""
+msgstr "part-to-dev"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3671
@@ -27057,18 +27822,20 @@ msgid ""
 " part-to-dev partition\n"
 "\n"
 msgstr ""
+" part-to-dev розділ\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:3677
 msgid ""
-"The named partition must exist, for example as a string returned from L</"
-"list-partitions>."
+"The named partition must exist, for example as a string returned from L"
+"</list-partitions>."
 msgstr ""
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3680
 msgid "ping-daemon"
-msgstr ""
+msgstr "ping-daemon"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3682
@@ -27077,11 +27844,13 @@ msgid ""
 " ping-daemon\n"
 "\n"
 msgstr ""
+" ping-daemon\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3689
 msgid "pread"
-msgstr ""
+msgstr "pread"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3691
@@ -27094,12 +27863,12 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish-actions.pod:3699
 msgid "See also L</pwrite>, L</pread-device>."
-msgstr ""
+msgstr "Див. також L</pwrite>, L</pread-device>."
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3704
 msgid "pread-device"
-msgstr ""
+msgstr "pread-device"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3706
@@ -27112,12 +27881,12 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish-actions.pod:3714
 msgid "See also L</pread>."
-msgstr ""
+msgstr "Див. також L</pread>."
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3719
 msgid "pvcreate"
-msgstr ""
+msgstr "pvcreate"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3721
@@ -27126,11 +27895,13 @@ msgid ""
 " pvcreate device\n"
 "\n"
 msgstr ""
+" pvcreate пристрій\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3727
 msgid "pvremove"
-msgstr ""
+msgstr "pvremove"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3729
@@ -27139,11 +27910,13 @@ msgid ""
 " pvremove device\n"
 "\n"
 msgstr ""
+" pvremove пристрій\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3738
 msgid "pvresize"
-msgstr ""
+msgstr "pvresize"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3740
@@ -27152,11 +27925,13 @@ msgid ""
 " pvresize device\n"
 "\n"
 msgstr ""
+" pvresize пристрій\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3745
 msgid "pvresize-size"
-msgstr ""
+msgstr "pvresize-size"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3747
@@ -27176,7 +27951,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3752
 msgid "pvs"
-msgstr ""
+msgstr "pvs"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3754
@@ -27185,16 +27960,18 @@ msgid ""
 " pvs\n"
 "\n"
 msgstr ""
+" pvs\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:3762
 msgid "See also L</pvs-full>."
-msgstr ""
+msgstr "Див. також L</pvs-full>."
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3764
 msgid "pvs-full"
-msgstr ""
+msgstr "pvs-full"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3766
@@ -27203,11 +27980,13 @@ msgid ""
 " pvs-full\n"
 "\n"
 msgstr ""
+" pvs-full\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3771
 msgid "pvuuid"
-msgstr ""
+msgstr "pvuuid"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3773
@@ -27216,11 +27995,13 @@ msgid ""
 " pvuuid device\n"
 "\n"
 msgstr ""
+" pvuuid пристрій\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3777
 msgid "pwrite"
-msgstr ""
+msgstr "pwrite"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3779
@@ -27233,12 +28014,12 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish-actions.pod:3790
 msgid "See also L</pread>, L</pwrite-device>."
-msgstr ""
+msgstr "Див. також L</pread>, L</pwrite-device>."
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3795
 msgid "pwrite-device"
-msgstr ""
+msgstr "pwrite-device"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3797
@@ -27251,12 +28032,12 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish-actions.pod:3807
 msgid "See also L</pwrite>."
-msgstr ""
+msgstr "Див. також L</pwrite>."
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3812
 msgid "read-file"
-msgstr ""
+msgstr "read-file"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3814
@@ -27265,6 +28046,8 @@ msgid ""
 " read-file path\n"
 "\n"
 msgstr ""
+" read-file шлях\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:3819
@@ -27277,7 +28060,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3827
 msgid "read-lines"
-msgstr ""
+msgstr "read-lines"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3829
@@ -27286,6 +28069,8 @@ msgid ""
 " read-lines path\n"
 "\n"
 msgstr ""
+" read-lines шлях\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:3836
@@ -27299,7 +28084,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3841
 msgid "readdir"
-msgstr ""
+msgstr "readdir"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3843
@@ -27308,6 +28093,8 @@ msgid ""
 " readdir dir\n"
 "\n"
 msgstr ""
+" readdir каталог\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:3895
@@ -27320,7 +28107,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3899
 msgid "readlink"
-msgstr ""
+msgstr "readlink"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3901
@@ -27329,11 +28116,13 @@ msgid ""
 " readlink path\n"
 "\n"
 msgstr ""
+" readlink шлях\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3905
 msgid "readlinklist"
-msgstr ""
+msgstr "readlinklist"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3907
@@ -27346,7 +28135,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3931
 msgid "realpath"
-msgstr ""
+msgstr "realpath"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3933
@@ -27355,11 +28144,13 @@ msgid ""
 " realpath path\n"
 "\n"
 msgstr ""
+" realpath шлях\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3938
 msgid "removexattr"
-msgstr ""
+msgstr "removexattr"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3940
@@ -27372,12 +28163,12 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish-actions.pod:3945
 msgid "See also: L</lremovexattr>, L<attr(5)>."
-msgstr ""
+msgstr "Див. також L</lremovexattr>, L<attr(5)>."
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3947
 msgid "resize2fs"
-msgstr ""
+msgstr "resize2fs"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3949
@@ -27386,20 +28177,22 @@ msgid ""
 " resize2fs device\n"
 "\n"
 msgstr ""
+" resize2fs пристрій\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:3954
 msgid ""
-"I<Note:> It is sometimes required that you run L</e2fsck-f> on the C<device> "
-"before calling this command.  For unknown reasons C<resize2fs> sometimes "
-"gives an error about this and sometimes not.  In any case, it is always safe "
-"to call L</e2fsck-f> before calling this function."
+"I<Note:> It is sometimes required that you run L</e2fsck-f> on the C<device>"
+" before calling this command.  For unknown reasons C<resize2fs> sometimes "
+"gives an error about this and sometimes not.  In any case, it is always safe"
+" to call L</e2fsck-f> before calling this function."
 msgstr ""
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3960
 msgid "resize2fs-M"
-msgstr ""
+msgstr "resize2fs-M"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3962
@@ -27408,6 +28201,8 @@ msgid ""
 " resize2fs-M device\n"
 "\n"
 msgstr ""
+" resize2fs-M пристрій\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:3964
@@ -27429,7 +28224,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3973
 msgid "resize2fs-size"
-msgstr ""
+msgstr "resize2fs-size"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3975
@@ -27449,7 +28244,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3980
 msgid "rm"
-msgstr ""
+msgstr "rm"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3982
@@ -27458,11 +28253,13 @@ msgid ""
 " rm path\n"
 "\n"
 msgstr ""
+" rm шлях\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3986
 msgid "rm-rf"
-msgstr ""
+msgstr "rm-rf"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3988
@@ -27471,11 +28268,13 @@ msgid ""
 " rm-rf path\n"
 "\n"
 msgstr ""
+" rm-rf шлях\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:3994
 msgid "rmdir"
-msgstr ""
+msgstr "rmdir"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:3996
@@ -27484,11 +28283,13 @@ msgid ""
 " rmdir path\n"
 "\n"
 msgstr ""
+" rmdir шлях\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4000
 msgid "rmmountpoint"
-msgstr ""
+msgstr "rmmountpoint"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4002
@@ -27501,14 +28302,14 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish-actions.pod:4004
 msgid ""
-"This calls removes a mountpoint that was previously created with L</"
-"mkmountpoint>.  See L</mkmountpoint> for full details."
+"This calls removes a mountpoint that was previously created with "
+"L</mkmountpoint>.  See L</mkmountpoint> for full details."
 msgstr ""
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4008
 msgid "scrub-device"
-msgstr ""
+msgstr "scrub-device"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4010
@@ -27517,11 +28318,13 @@ msgid ""
 " scrub-device device\n"
 "\n"
 msgstr ""
+" scrub-device пристрій\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4021
 msgid "scrub-file"
-msgstr ""
+msgstr "scrub-file"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4023
@@ -27530,11 +28333,13 @@ msgid ""
 " scrub-file file\n"
 "\n"
 msgstr ""
+" scrub-file файл\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4033
 msgid "scrub-freespace"
-msgstr ""
+msgstr "scrub-freespace"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4035
@@ -27543,12 +28348,14 @@ msgid ""
 " scrub-freespace dir\n"
 "\n"
 msgstr ""
+" scrub-freespace каталог\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:4037
 msgid ""
-"This command creates the directory C<dir> and then fills it with files until "
-"the filesystem is full, and scrubs the files as for L</scrub-file>, and "
+"This command creates the directory C<dir> and then fills it with files until"
+" the filesystem is full, and scrubs the files as for L</scrub-file>, and "
 "deletes them.  The intention is to scrub any free space on the partition "
 "containing C<dir>."
 msgstr ""
@@ -27556,7 +28363,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4046
 msgid "set-append"
-msgstr ""
+msgstr "set-append"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4048
@@ -27574,7 +28381,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4061
 msgid "set-attach-method"
-msgstr ""
+msgstr "set-attach-method"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4063
@@ -27592,12 +28399,12 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4087
 msgid "set-autosync"
-msgstr ""
+msgstr "set-autosync"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4089
 msgid "autosync"
-msgstr ""
+msgstr "autosync"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4091
@@ -27606,16 +28413,18 @@ msgid ""
 " set-autosync true|false\n"
 "\n"
 msgstr ""
+" set-autosync true|false\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4101
 msgid "set-direct"
-msgstr ""
+msgstr "set-direct"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4103
 msgid "direct"
-msgstr ""
+msgstr "direct"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4105
@@ -27624,6 +28433,8 @@ msgid ""
 " set-direct true|false\n"
 "\n"
 msgstr ""
+" set-direct true|false\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:4111
@@ -27635,7 +28446,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4120
 msgid "set-e2label"
-msgstr ""
+msgstr "set-e2label"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4122
@@ -27655,7 +28466,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4131
 msgid "set-e2uuid"
-msgstr ""
+msgstr "set-e2uuid"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4133
@@ -27675,7 +28486,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4143
 msgid "set-memsize"
-msgstr ""
+msgstr "set-memsize"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4145
@@ -27700,12 +28511,12 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4160
 msgid "set-network"
-msgstr ""
+msgstr "set-network"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4162
 msgid "network"
-msgstr ""
+msgstr "network"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4164
@@ -27714,6 +28525,8 @@ msgid ""
 " set-network true|false\n"
 "\n"
 msgstr ""
+" set-network true|false\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:4172
@@ -27724,7 +28537,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4175
 msgid "set-path"
-msgstr ""
+msgstr "set-path"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4177
@@ -27760,12 +28573,12 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4203
 msgid "set-qemu"
-msgstr ""
+msgstr "set-qemu"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4205
 msgid "qemu"
-msgstr ""
+msgstr "qemu"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4207
@@ -27774,16 +28587,18 @@ msgid ""
 " set-qemu qemu\n"
 "\n"
 msgstr ""
+" set-qemu qemu\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4227
 msgid "set-recovery-proc"
-msgstr ""
+msgstr "set-recovery-proc"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4229
 msgid "recovery-proc"
-msgstr ""
+msgstr "recovery-proc"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4231
@@ -27792,6 +28607,8 @@ msgid ""
 " set-recovery-proc true|false\n"
 "\n"
 msgstr ""
+" set-recovery-proc true|false\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:4233
@@ -27811,12 +28628,12 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4247
 msgid "set-selinux"
-msgstr ""
+msgstr "set-selinux"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4249
 msgid "selinux"
-msgstr ""
+msgstr "selinux"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4251
@@ -27825,16 +28642,18 @@ msgid ""
 " set-selinux true|false\n"
 "\n"
 msgstr ""
+" set-selinux true|false\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4262
 msgid "set-trace"
-msgstr ""
+msgstr "set-trace"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4264
 msgid "trace"
-msgstr ""
+msgstr "trace"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4266
@@ -27843,6 +28662,8 @@ msgid ""
 " set-trace true|false\n"
 "\n"
 msgstr ""
+" set-trace true|false\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:4278
@@ -27854,7 +28675,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4282
 msgid "set-verbose"
-msgstr ""
+msgstr "set-verbose"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4284
@@ -27868,6 +28689,8 @@ msgid ""
 " set-verbose true|false\n"
 "\n"
 msgstr ""
+" set-verbose true|false\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:4293
@@ -27879,7 +28702,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4297
 msgid "setcon"
-msgstr ""
+msgstr "setcon"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4299
@@ -27888,11 +28711,13 @@ msgid ""
 " setcon context\n"
 "\n"
 msgstr ""
+" setcon контекст\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4306
 msgid "setxattr"
-msgstr ""
+msgstr "setxattr"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4308
@@ -27905,12 +28730,12 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish-actions.pod:4314
 msgid "See also: L</lsetxattr>, L<attr(5)>."
-msgstr ""
+msgstr "Див. також L</lsetxattr>, L<attr(5)>."
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4316
 msgid "sfdisk"
-msgstr ""
+msgstr "sfdisk"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4318
@@ -27923,12 +28748,12 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish-actions.pod:4340
 msgid "See also: L</sfdisk-l>, L</sfdisk-N>, L</part-init>"
-msgstr ""
+msgstr "Див. також L</sfdisk-l>, L</sfdisk-N>, L</part-init>"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4353
 msgid "sfdiskM"
-msgstr ""
+msgstr "sfdiskM"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4355
@@ -27951,11 +28776,12 @@ msgstr ""
 #: ../fish/guestfish-actions.pod:4363
 msgid "See also: L</sfdisk>, the L<sfdisk(8)> manpage and L</part-disk>"
 msgstr ""
+"Див також L</sfdisk>, сторінку довідки (man) L<sfdisk(8)> та L</part-disk>"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4376
 msgid "sfdisk-N"
-msgstr ""
+msgstr "sfdisk-N"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4378
@@ -27975,12 +28801,12 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish-actions.pod:4386
 msgid "See also: L</part-add>"
-msgstr ""
+msgstr "Див. також L</part-add>"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4398
 msgid "sfdisk-disk-geometry"
-msgstr ""
+msgstr "sfdisk-disk-geometry"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4400
@@ -27989,20 +28815,22 @@ msgid ""
 " sfdisk-disk-geometry device\n"
 "\n"
 msgstr ""
+" sfdisk-disk-geometry пристрій\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:4402
 msgid ""
-"This displays the disk geometry of C<device> read from the partition table.  "
-"Especially in the case where the underlying block device has been resized, "
-"this can be different from the kernel's idea of the geometry (see L</sfdisk-"
-"kernel-geometry>)."
+"This displays the disk geometry of C<device> read from the partition table."
+"  Especially in the case where the underlying block device has been resized,"
+" this can be different from the kernel's idea of the geometry (see L"
+"</sfdisk-kernel-geometry>)."
 msgstr ""
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4410
 msgid "sfdisk-kernel-geometry"
-msgstr ""
+msgstr "sfdisk-kernel-geometry"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4412
@@ -28011,11 +28839,13 @@ msgid ""
 " sfdisk-kernel-geometry device\n"
 "\n"
 msgstr ""
+" sfdisk-kernel-geometry пристрій\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4419
 msgid "sfdisk-l"
-msgstr ""
+msgstr "sfdisk-l"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4421
@@ -28024,16 +28854,18 @@ msgid ""
 " sfdisk-l device\n"
 "\n"
 msgstr ""
+" sfdisk-l пристрій\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:4427
 msgid "See also: L</part-list>"
-msgstr ""
+msgstr "Див. також L</part-list>"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4436
 msgid "sh"
-msgstr ""
+msgstr "sh"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4438
@@ -28042,6 +28874,8 @@ msgid ""
 " sh command\n"
 "\n"
 msgstr ""
+" sh команда\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:4443
@@ -28056,7 +28890,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4453
 msgid "sh-lines"
-msgstr ""
+msgstr "sh-lines"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4455
@@ -28065,21 +28899,24 @@ msgid ""
 " sh-lines command\n"
 "\n"
 msgstr ""
+" sh-lines команда\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:4457
-msgid "This is the same as L</sh>, but splits the result into a list of lines."
+msgid ""
+"This is the same as L</sh>, but splits the result into a list of lines."
 msgstr ""
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:4460
 msgid "See also: L</command-lines>"
-msgstr ""
+msgstr "Див. також L</command-lines>"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4462
 msgid "sleep"
-msgstr ""
+msgstr "sleep"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4464
@@ -28088,11 +28925,13 @@ msgid ""
 " sleep secs\n"
 "\n"
 msgstr ""
+" sleep час_у_секундах\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4468
 msgid "stat"
-msgstr ""
+msgstr "stat"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4470
@@ -28101,11 +28940,13 @@ msgid ""
 " stat path\n"
 "\n"
 msgstr ""
+" stat шлях\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4476
 msgid "statvfs"
-msgstr ""
+msgstr "statvfs"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4478
@@ -28114,11 +28955,13 @@ msgid ""
 " statvfs path\n"
 "\n"
 msgstr ""
+" statvfs шлях\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4486
 msgid "strings"
-msgstr ""
+msgstr "strings"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4488
@@ -28127,11 +28970,13 @@ msgid ""
 " strings path\n"
 "\n"
 msgstr ""
+" strings шлях\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4496
 msgid "strings-e"
-msgstr ""
+msgstr "strings-e"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4498
@@ -28140,12 +28985,14 @@ msgid ""
 " strings-e encoding path\n"
 "\n"
 msgstr ""
+" strings-e кодування шлях\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:4500
 msgid ""
-"This is like the L</strings> command, but allows you to specify the encoding "
-"of strings that are looked for in the source file C<path>."
+"This is like the L</strings> command, but allows you to specify the encoding"
+" of strings that are looked for in the source file C<path>."
 msgstr ""
 
 #. type: textblock
@@ -28158,7 +29005,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4542
 msgid "swapoff-device"
-msgstr ""
+msgstr "swapoff-device"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4544
@@ -28167,6 +29014,8 @@ msgid ""
 " swapoff-device device\n"
 "\n"
 msgstr ""
+" swapoff-device пристрій\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:4546
@@ -28178,7 +29027,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4550
 msgid "swapoff-file"
-msgstr ""
+msgstr "swapoff-file"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4552
@@ -28187,11 +29036,13 @@ msgid ""
 " swapoff-file file\n"
 "\n"
 msgstr ""
+" swapoff-file файл\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4556
 msgid "swapoff-label"
-msgstr ""
+msgstr "swapoff-label"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4558
@@ -28200,11 +29051,13 @@ msgid ""
 " swapoff-label label\n"
 "\n"
 msgstr ""
+" swapoff-label мітка\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4563
 msgid "swapoff-uuid"
-msgstr ""
+msgstr "swapoff-uuid"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4565
@@ -28213,11 +29066,13 @@ msgid ""
 " swapoff-uuid uuid\n"
 "\n"
 msgstr ""
+" swapoff-uuid uuid\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4570
 msgid "swapon-device"
-msgstr ""
+msgstr "swapon-device"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4572
@@ -28226,6 +29081,8 @@ msgid ""
 " swapon-device device\n"
 "\n"
 msgstr ""
+" swapon-device пристрій\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:4574
@@ -28238,7 +29095,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4586
 msgid "swapon-file"
-msgstr ""
+msgstr "swapon-file"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4588
@@ -28247,6 +29104,8 @@ msgid ""
 " swapon-file file\n"
 "\n"
 msgstr ""
+" swapon-file файл\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:4590
@@ -28257,7 +29116,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4593
 msgid "swapon-label"
-msgstr ""
+msgstr "swapon-label"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4595
@@ -28266,6 +29125,8 @@ msgid ""
 " swapon-label label\n"
 "\n"
 msgstr ""
+" swapon-label мітка\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:4597
@@ -28277,7 +29138,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4600
 msgid "swapon-uuid"
-msgstr ""
+msgstr "swapon-uuid"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4602
@@ -28286,18 +29147,20 @@ msgid ""
 " swapon-uuid uuid\n"
 "\n"
 msgstr ""
+" swapon-uuid uuid\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:4604
 msgid ""
-"This command enables swap to a swap partition with the given UUID.  See L</"
-"swapon-device> for other notes."
+"This command enables swap to a swap partition with the given UUID.  See L"
+"</swapon-device> for other notes."
 msgstr ""
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4607
 msgid "sync"
-msgstr ""
+msgstr "sync"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4609
@@ -28306,11 +29169,13 @@ msgid ""
 " sync\n"
 "\n"
 msgstr ""
+" sync\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4617
 msgid "tail"
-msgstr ""
+msgstr "tail"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4619
@@ -28319,11 +29184,13 @@ msgid ""
 " tail path\n"
 "\n"
 msgstr ""
+" tail шлях\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4627
 msgid "tail-n"
-msgstr ""
+msgstr "tail-n"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4629
@@ -28336,7 +29203,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4642
 msgid "tar-in"
-msgstr ""
+msgstr "tar-in"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4644
@@ -28345,6 +29212,8 @@ msgid ""
 " tar-in (tarfile|-) directory\n"
 "\n"
 msgstr ""
+" tar-in (файл_tar|-) каталог\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:4649
@@ -28354,7 +29223,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4654
 msgid "tar-out"
-msgstr ""
+msgstr "tar-out"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4656
@@ -28363,6 +29232,8 @@ msgid ""
 " tar-out directory (tarfile|-)\n"
 "\n"
 msgstr ""
+" tar-out каталог (файл tar|-)\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:4661
@@ -28372,7 +29243,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4666
 msgid "tgz-in"
-msgstr ""
+msgstr "tgz-in"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4668
@@ -28381,6 +29252,8 @@ msgid ""
 " tgz-in (tarball|-) directory\n"
 "\n"
 msgstr ""
+" tgz-in (архів tar|-) каталог\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:4673
@@ -28390,7 +29263,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4677
 msgid "tgz-out"
-msgstr ""
+msgstr "tgz-out"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4679
@@ -28399,6 +29272,8 @@ msgid ""
 " tgz-out directory (tarball|-)\n"
 "\n"
 msgstr ""
+" tgz-out каталог (архів tar|-)\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:4684
@@ -28408,7 +29283,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4688
 msgid "touch"
-msgstr ""
+msgstr "touch"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4690
@@ -28417,11 +29292,13 @@ msgid ""
 " touch path\n"
 "\n"
 msgstr ""
+" touch шлях\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4699
 msgid "truncate"
-msgstr ""
+msgstr "truncate"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4701
@@ -28430,11 +29307,13 @@ msgid ""
 " truncate path\n"
 "\n"
 msgstr ""
+" truncate шлях\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4706
 msgid "truncate-size"
-msgstr ""
+msgstr "truncate-size"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4708
@@ -28443,6 +29322,8 @@ msgid ""
 " truncate-size path size\n"
 "\n"
 msgstr ""
+" truncate-size шлях розмір\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:4713
@@ -28456,7 +29337,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4719
 msgid "tune2fs-l"
-msgstr ""
+msgstr "tune2fs-l"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4721
@@ -28465,11 +29346,13 @@ msgid ""
 " tune2fs-l device\n"
 "\n"
 msgstr ""
+" tune2fs-l пристрій\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4731
 msgid "txz-in"
-msgstr ""
+msgstr "txz-in"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4733
@@ -28478,11 +29361,13 @@ msgid ""
 " txz-in (tarball|-) directory\n"
 "\n"
 msgstr ""
+" txz-in (архів tar|-) каталог\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4740
 msgid "txz-out"
-msgstr ""
+msgstr "txz-out"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4742
@@ -28491,11 +29376,13 @@ msgid ""
 " txz-out directory (tarball|-)\n"
 "\n"
 msgstr ""
+" txz-out каталог (архів tar|-)\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4749
 msgid "umask"
-msgstr ""
+msgstr "umask"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4751
@@ -28504,21 +29391,23 @@ msgid ""
 " umask mask\n"
 "\n"
 msgstr ""
+" umask маска\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:4765
 msgid "See also L</get-umask>, L<umask(2)>, L</mknod>, L</mkdir>."
-msgstr ""
+msgstr "Див. також L</get-umask>, L<umask(2)>, L</mknod>, L</mkdir>."
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4770
 msgid "umount"
-msgstr ""
+msgstr "umount"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4772
 msgid "unmount"
-msgstr ""
+msgstr "unmount"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4774
@@ -28527,16 +29416,18 @@ msgid ""
 " umount pathordevice\n"
 "\n"
 msgstr ""
+" umount шлях_або_пристрій\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4780
 msgid "umount-all"
-msgstr ""
+msgstr "umount-all"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4782
 msgid "unmount-all"
-msgstr ""
+msgstr "unmount-all"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4784
@@ -28545,11 +29436,13 @@ msgid ""
 " umount-all\n"
 "\n"
 msgstr ""
+" umount-all\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4790
 msgid "upload"
-msgstr ""
+msgstr "upload"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4792
@@ -28558,16 +29451,18 @@ msgid ""
 " upload (filename|-) remotefilename\n"
 "\n"
 msgstr ""
+" upload (назва_файла|-) назва_віддаленого_файла\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:4799
 msgid "See also L</download>."
-msgstr ""
+msgstr "Див. також L</download>."
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4803
 msgid "upload-offset"
-msgstr ""
+msgstr "upload-offset"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4805
@@ -28576,6 +29471,8 @@ msgid ""
 " upload-offset (filename|-) remotefilename offset\n"
 "\n"
 msgstr ""
+" upload-offset (назва_файла|-) назва_віддаленого_файла відступ\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:4817
@@ -28588,12 +29485,12 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish-actions.pod:4822
 msgid "See also L</upload>, L</pwrite>."
-msgstr ""
+msgstr "Див. також L</upload>, L</pwrite>."
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4826
 msgid "utimens"
-msgstr ""
+msgstr "utimens"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4828
@@ -28606,7 +29503,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4847
 msgid "version"
-msgstr ""
+msgstr "version"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4849
@@ -28615,6 +29512,8 @@ msgid ""
 " version\n"
 "\n"
 msgstr ""
+" version\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:4876
@@ -28628,7 +29527,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4882
 msgid "vfs-label"
-msgstr ""
+msgstr "vfs-label"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4884
@@ -28637,6 +29536,8 @@ msgid ""
 " vfs-label device\n"
 "\n"
 msgstr ""
+" vfs-label пристрій\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:4891
@@ -28646,7 +29547,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4893
 msgid "vfs-type"
-msgstr ""
+msgstr "vfs-type"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4895
@@ -28655,11 +29556,13 @@ msgid ""
 " vfs-type device\n"
 "\n"
 msgstr ""
+" vfs-type пристрій\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4905
 msgid "vfs-uuid"
-msgstr ""
+msgstr "vfs-uuid"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4907
@@ -28668,6 +29571,8 @@ msgid ""
 " vfs-uuid device\n"
 "\n"
 msgstr ""
+" vfs-uuid пристрій\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:4914
@@ -28677,7 +29582,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4916
 msgid "vg-activate"
-msgstr ""
+msgstr "vg-activate"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4918
@@ -28690,7 +29595,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4928
 msgid "vg-activate-all"
-msgstr ""
+msgstr "vg-activate-all"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4930
@@ -28699,11 +29604,13 @@ msgid ""
 " vg-activate-all true|false\n"
 "\n"
 msgstr ""
+" vg-activate-all true|false\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4937
 msgid "vgcreate"
-msgstr ""
+msgstr "vgcreate"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4939
@@ -28716,7 +29623,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4944
 msgid "vglvuuids"
-msgstr ""
+msgstr "vglvuuids"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4946
@@ -28736,12 +29643,12 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish-actions.pod:4954
 msgid "See also L</vgpvuuids>."
-msgstr ""
+msgstr "Див. також L</vgpvuuids>."
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4956
 msgid "vgpvuuids"
-msgstr ""
+msgstr "vgpvuuids"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4958
@@ -28761,12 +29668,12 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish-actions.pod:4966
 msgid "See also L</vglvuuids>."
-msgstr ""
+msgstr "Див. також L</vglvuuids>."
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4968
 msgid "vgremove"
-msgstr ""
+msgstr "vgremove"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4970
@@ -28779,7 +29686,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4977
 msgid "vgrename"
-msgstr ""
+msgstr "vgrename"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4979
@@ -28792,7 +29699,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4983
 msgid "vgs"
-msgstr ""
+msgstr "vgs"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4985
@@ -28801,16 +29708,18 @@ msgid ""
 " vgs\n"
 "\n"
 msgstr ""
+" vgs\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:4993
 msgid "See also L</vgs-full>."
-msgstr ""
+msgstr "Див. також L</vgs-full>."
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:4995
 msgid "vgs-full"
-msgstr ""
+msgstr "vgs-full"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:4997
@@ -28819,11 +29728,13 @@ msgid ""
 " vgs-full\n"
 "\n"
 msgstr ""
+" vgs-full\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:5002
 msgid "vgscan"
-msgstr ""
+msgstr "vgscan"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:5004
@@ -28832,11 +29743,13 @@ msgid ""
 " vgscan\n"
 "\n"
 msgstr ""
+" vgscan\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:5009
 msgid "vguuid"
-msgstr ""
+msgstr "vguuid"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:5011
@@ -28849,7 +29762,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:5015
 msgid "wc-c"
-msgstr ""
+msgstr "wc-c"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:5017
@@ -28858,11 +29771,13 @@ msgid ""
 " wc-c path\n"
 "\n"
 msgstr ""
+" wc-c шлях\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:5022
 msgid "wc-l"
-msgstr ""
+msgstr "wc-l"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:5024
@@ -28871,11 +29786,13 @@ msgid ""
 " wc-l path\n"
 "\n"
 msgstr ""
+" wc-l шлях\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:5029
 msgid "wc-w"
-msgstr ""
+msgstr "wc-w"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:5031
@@ -28884,11 +29801,13 @@ msgid ""
 " wc-w path\n"
 "\n"
 msgstr ""
+" wc-w шлях\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:5036
 msgid "write"
-msgstr ""
+msgstr "write"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:5038
@@ -28897,13 +29816,13 @@ msgid ""
 " write path content\n"
 "\n"
 msgstr ""
+" write шлях дані\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:5043
-#, fuzzy
-#| msgid "See L<guestfish(1)>."
 msgid "See also L</write-append>."
-msgstr "Див. L<guestfish(1)>."
+msgstr ""
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:5048
@@ -28920,15 +29839,13 @@ msgstr ""
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:5055
-#, fuzzy
-#| msgid "See L<guestfish(1)>."
 msgid "See also L</write>."
-msgstr "Див. L<guestfish(1)>."
+msgstr ""
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:5060
 msgid "write-file"
-msgstr ""
+msgstr "write-file"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:5062
@@ -28941,7 +29858,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:5085
 msgid "zegrep"
-msgstr ""
+msgstr "zegrep"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:5087
@@ -28950,11 +29867,13 @@ msgid ""
 " zegrep regex path\n"
 "\n"
 msgstr ""
+" zegrep формальний_вираз шлях\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:5095
 msgid "zegrepi"
-msgstr ""
+msgstr "zegrepi"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:5097
@@ -28967,7 +29886,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:5105
 msgid "zero"
-msgstr ""
+msgstr "zero"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:5107
@@ -28976,6 +29895,8 @@ msgid ""
 " zero device\n"
 "\n"
 msgstr ""
+" zero пристрій\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:5115
@@ -28985,7 +29906,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:5118
 msgid "zero-device"
-msgstr ""
+msgstr "zero-device"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:5120
@@ -28994,18 +29915,20 @@ msgid ""
 " zero-device device\n"
 "\n"
 msgstr ""
+" zero-device пристрій\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:5122
 msgid ""
-"This command writes zeroes over the entire C<device>.  Compare with L</zero> "
-"which just zeroes the first few blocks of a device."
+"This command writes zeroes over the entire C<device>.  Compare with L</zero>"
+" which just zeroes the first few blocks of a device."
 msgstr ""
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:5129
 msgid "zerofree"
-msgstr ""
+msgstr "zerofree"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:5131
@@ -29014,11 +29937,13 @@ msgid ""
 " zerofree device\n"
 "\n"
 msgstr ""
+" zerofree пристрій\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:5144
 msgid "zfgrep"
-msgstr ""
+msgstr "zfgrep"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:5146
@@ -29027,11 +29952,13 @@ msgid ""
 " zfgrep pattern path\n"
 "\n"
 msgstr ""
+" zfgrep шаблон шлях\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:5154
 msgid "zfgrepi"
-msgstr ""
+msgstr "zfgrepi"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:5156
@@ -29040,11 +29967,13 @@ msgid ""
 " zfgrepi pattern path\n"
 "\n"
 msgstr ""
+" zfgrepi шаблон шлях\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:5164
 msgid "zfile"
-msgstr ""
+msgstr "zfile"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:5166
@@ -29053,6 +29982,8 @@ msgid ""
 " zfile meth path\n"
 "\n"
 msgstr ""
+" zfile метод шлях\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-actions.pod:5173
@@ -29063,7 +29994,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-actions.pod:5183
 msgid "zgrep"
-msgstr ""
+msgstr "zgrep"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:5185
@@ -29072,11 +30003,13 @@ msgid ""
 " zgrep regex path\n"
 "\n"
 msgstr ""
+" zgrep формальний_вираз шлях\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-actions.pod:5193
 msgid "zgrepi"
-msgstr ""
+msgstr "zgrepi"
 
 #. type: verbatim
 #: ../fish/guestfish-actions.pod:5195
@@ -29085,11 +30018,13 @@ msgid ""
 " zgrepi regex path\n"
 "\n"
 msgstr ""
+" zgrepi формальний_вираз шлях\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-commands.pod:1
 msgid "alloc"
-msgstr ""
+msgstr "alloc"
 
 #. type: =head2
 #: ../fish/guestfish-commands.pod:3
@@ -29131,7 +30066,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-commands.pod:17
 msgid "copy-in"
-msgstr ""
+msgstr "copy-in"
 
 #. type: verbatim
 #: ../fish/guestfish-commands.pod:19
@@ -29146,8 +30081,8 @@ msgstr ""
 msgid ""
 "C<copy-in> copies local files or directories recursively into the disk "
 "image, placing them in the directory called C</remotedir> (which must "
-"exist).  This guestfish meta-command turns into a sequence of L</tar-in> and "
-"other commands as necessary."
+"exist).  This guestfish meta-command turns into a sequence of L</tar-in> and"
+" other commands as necessary."
 msgstr ""
 
 #. type: textblock
@@ -29160,7 +30095,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-commands.pod:30
 msgid "copy-out"
-msgstr ""
+msgstr "copy-out"
 
 #. type: verbatim
 #: ../fish/guestfish-commands.pod:32
@@ -29174,9 +30109,9 @@ msgstr ""
 #: ../fish/guestfish-commands.pod:34
 msgid ""
 "C<copy-out> copies remote files or directories recursively out of the disk "
-"image, placing them on the host disk in a local directory called C<localdir> "
-"(which must exist).  This guestfish meta-command turns into a sequence of L</"
-"download>, L</tar-out> and other commands as necessary."
+"image, placing them on the host disk in a local directory called C<localdir>"
+" (which must exist).  This guestfish meta-command turns into a sequence of "
+"L</download>, L</tar-out> and other commands as necessary."
 msgstr ""
 
 #. type: textblock
@@ -29194,6 +30129,8 @@ msgid ""
 " copy-out /home .\n"
 "\n"
 msgstr ""
+" copy-out /home .\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-commands.pod:46
@@ -29209,6 +30146,8 @@ msgid ""
 " glob copy-out /home/* .\n"
 "\n"
 msgstr ""
+" glob copy-out /home/* .\n"
+"\n"
 
 #. type: =head2
 #: ../fish/guestfish-commands.pod:51
@@ -29247,15 +30186,13 @@ msgstr ""
 
 #. type: textblock
 #: ../fish/guestfish-commands.pod:63
-#, fuzzy
-#| msgid "See L<guestfish(1)>."
 msgid "See also L<display(1)>."
-msgstr "Див. L<guestfish(1)>."
+msgstr ""
 
 #. type: =head2
 #: ../fish/guestfish-commands.pod:65
 msgid "echo"
-msgstr ""
+msgstr "echo"
 
 #. type: verbatim
 #: ../fish/guestfish-commands.pod:67
@@ -29264,6 +30201,8 @@ msgid ""
 " echo [params ...]\n"
 "\n"
 msgstr ""
+" echo [параметри...]\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-commands.pod:69
@@ -29273,17 +30212,17 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-commands.pod:71
 msgid "edit"
-msgstr ""
+msgstr "edit"
 
 #. type: =head2
 #: ../fish/guestfish-commands.pod:73
 msgid "vi"
-msgstr ""
+msgstr "vi"
 
 #. type: =head2
 #: ../fish/guestfish-commands.pod:75
 msgid "emacs"
-msgstr ""
+msgstr "emacs"
 
 #. type: verbatim
 #: ../fish/guestfish-commands.pod:77
@@ -29292,6 +30231,8 @@ msgid ""
 " edit filename\n"
 "\n"
 msgstr ""
+" edit назва_файла\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-commands.pod:79
@@ -29310,7 +30251,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-commands.pod:86
 msgid "glob"
-msgstr ""
+msgstr "glob"
 
 #. type: verbatim
 #: ../fish/guestfish-commands.pod:88
@@ -29319,6 +30260,8 @@ msgid ""
 " glob command args...\n"
 "\n"
 msgstr ""
+" glob команда параметри...\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-commands.pod:90
@@ -29330,12 +30273,12 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish-commands.pod:93
 msgid "See L</WILDCARDS AND GLOBBING>."
-msgstr ""
+msgstr "Див. L</WILDCARDS AND GLOBBING>."
 
 #. type: =head2
 #: ../fish/guestfish-commands.pod:95
 msgid "hexedit"
-msgstr ""
+msgstr "hexedit"
 
 #. type: verbatim
 #: ../fish/guestfish-commands.pod:97
@@ -29376,11 +30319,14 @@ msgid ""
 " hexedit /dev/sda 1M\n"
 "\n"
 msgstr ""
+" hexedit /dev/sda 1M\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-commands.pod:116
 msgid ""
-"which would allow you to edit anywhere within the first megabyte of the disk."
+"which would allow you to edit anywhere within the first megabyte of the "
+"disk."
 msgstr ""
 
 #. type: textblock
@@ -29395,6 +30341,8 @@ msgid ""
 " hexedit /dev/sda1 0x400 0x400\n"
 "\n"
 msgstr ""
+" hexedit /dev/sda1 0x400 0x400\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-commands.pod:123
@@ -29411,12 +30359,12 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish-commands.pod:129
 msgid "See also L</hexdump>."
-msgstr ""
+msgstr "Див. також L</hexdump>."
 
 #. type: =head2
 #: ../fish/guestfish-commands.pod:131
 msgid "lcd"
-msgstr ""
+msgstr "lcd"
 
 #. type: verbatim
 #: ../fish/guestfish-commands.pod:133
@@ -29440,7 +30388,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-commands.pod:140
 msgid "man"
-msgstr ""
+msgstr "man"
 
 #. type: =head2
 #: ../fish/guestfish-commands.pod:142
@@ -29454,6 +30402,8 @@ msgid ""
 "  man\n"
 "\n"
 msgstr ""
+"  man\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-commands.pod:146
@@ -29463,12 +30413,12 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-commands.pod:148
 msgid "more"
-msgstr ""
+msgstr "more"
 
 #. type: =head2
 #: ../fish/guestfish-commands.pod:150
 msgid "less"
-msgstr ""
+msgstr "less"
 
 #. type: verbatim
 #: ../fish/guestfish-commands.pod:152
@@ -29501,7 +30451,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-commands.pod:161
 msgid "reopen"
-msgstr ""
+msgstr "reopen"
 
 #. type: verbatim
 #: ../fish/guestfish-commands.pod:163
@@ -29522,7 +30472,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-commands.pod:169
 msgid "sparse"
-msgstr ""
+msgstr "sparse"
 
 #. type: verbatim
 #: ../fish/guestfish-commands.pod:171
@@ -29535,8 +30485,8 @@ msgstr ""
 #. type: textblock
 #: ../fish/guestfish-commands.pod:173
 msgid ""
-"This creates an empty sparse file of the given size, and then adds so it can "
-"be further examined."
+"This creates an empty sparse file of the given size, and then adds so it can"
+" be further examined."
 msgstr ""
 
 #. type: textblock
@@ -29552,7 +30502,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-commands.pod:186
 msgid "supported"
-msgstr ""
+msgstr "supported"
 
 #. type: verbatim
 #: ../fish/guestfish-commands.pod:188
@@ -29561,12 +30511,15 @@ msgid ""
 " supported\n"
 "\n"
 msgstr ""
+" supported\n"
+"\n"
 
 #. type: textblock
 #: ../fish/guestfish-commands.pod:190
 msgid ""
 "This command returns a list of the optional groups known to the daemon, and "
-"indicates which ones are supported by this build of the libguestfs appliance."
+"indicates which ones are supported by this build of the libguestfs "
+"appliance."
 msgstr ""
 
 #. type: textblock
@@ -29577,7 +30530,7 @@ msgstr ""
 #. type: =head2
 #: ../fish/guestfish-commands.pod:196
 msgid "time"
-msgstr ""
+msgstr "time"
 
 #. type: verbatim
 #: ../fish/guestfish-commands.pod:198
@@ -29658,14 +30611,14 @@ msgstr ""
 msgid ""
 "If it fails (and/or exits with non-zero error code), please paste the "
 "B<complete, unedited> output of the test tool into a bug report.  More "
-"information about reporting bugs can be found on the L<http://libguestfs.org/"
-"> website."
+"information about reporting bugs can be found on the "
+"L<http://libguestfs.org/> website."
 msgstr ""
 
 #. type: =item
 #: ../test-tool/libguestfs-test-tool.pod:41
 msgid "I<--help>"
-msgstr ""
+msgstr "I<--help>"
 
 #. type: textblock
 #: ../test-tool/libguestfs-test-tool.pod:43
@@ -29675,7 +30628,7 @@ msgstr ""
 #. type: =item
 #: ../test-tool/libguestfs-test-tool.pod:45
 msgid "I<--qemu qemu_binary>"
-msgstr ""
+msgstr "I<--qemu виконуваний_файл_qemu>"
 
 #. type: textblock
 #: ../test-tool/libguestfs-test-tool.pod:47
@@ -29699,7 +30652,7 @@ msgstr ""
 #. type: =item
 #: ../test-tool/libguestfs-test-tool.pod:55
 msgid "I<--timeout N>"
-msgstr ""
+msgstr "I<--timeout N>"
 
 #. type: textblock
 #: ../test-tool/libguestfs-test-tool.pod:57
@@ -29732,9 +30685,9 @@ msgstr ""
 #: ../test-tool/libguestfs-test-tool.pod:72
 msgid ""
 "When using an alternate qemu with libguestfs, usually you would need to "
-"write a qemu wrapper script (see section I<QEMU WRAPPERS> in L<guestfs(3)"
-">).  libguestfs-test-tool writes a temporary qemu wrapper script when you "
-"use either of the I<--qemudir> or I<--qemu> options."
+"write a qemu wrapper script (see section I<QEMU WRAPPERS> in L<guestfs(3)>)."
+"  libguestfs-test-tool writes a temporary qemu wrapper script when you use "
+"either of the I<--qemudir> or I<--qemu> options."
 msgstr ""
 
 #. type: textblock
@@ -29806,8 +30759,8 @@ msgstr ""
 #: ../fuse/guestmount.pod:27
 msgid ""
 "Along with other options, you have to give at least one device (I<-a> "
-"option) or libvirt domain (I<-d> option), and at least one mountpoint (I<-m> "
-"option) or use the I<-i> inspection option.  How this works is better "
+"option) or libvirt domain (I<-d> option), and at least one mountpoint (I<-m>"
+" option) or use the I<-i> inspection option.  How this works is better "
 "explained in the L<guestfish(1)> manual page, or by looking at the examples "
 "below."
 msgstr ""
@@ -29816,9 +30769,9 @@ msgstr ""
 #: ../fuse/guestmount.pod:33
 msgid ""
 "FUSE lets you mount filesystems as non-root.  The mountpoint must be owned "
-"by you, and the filesystem will not be visible to any other users unless you "
-"make certain global configuration changes to C</etc/fuse.conf>.  To unmount "
-"the filesystem, use the C<fusermount -u> command."
+"by you, and the filesystem will not be visible to any other users unless you"
+" make certain global configuration changes to C</etc/fuse.conf>.  To unmount"
+" the filesystem, use the C<fusermount -u> command."
 msgstr ""
 
 #. type: textblock
@@ -29923,7 +30876,7 @@ msgstr ""
 #. type: =head1
 #: ../fuse/guestmount.pod:73
 msgid "NOTES"
-msgstr ""
+msgstr "ПРИМІТКИ"
 
 #. type: =head2
 #: ../fuse/guestmount.pod:75
@@ -29969,16 +30922,16 @@ msgstr ""
 #. type: =item
 #: ../fuse/guestmount.pod:108
 msgid "B<--dir-cache-timeout N>"
-msgstr ""
+msgstr "B<--dir-cache-timeout N>"
 
 #. type: textblock
 #: ../fuse/guestmount.pod:110
 msgid ""
-"Set the readdir cache timeout to I<N> seconds, the default being 60 "
-"seconds.  The readdir cache [actually, there are several semi-independent "
-"caches] is populated after a readdir(2) call with the stat and extended "
-"attributes of the files in the directory, in anticipation that they will be "
-"requested soon after."
+"Set the readdir cache timeout to I<N> seconds, the default being 60 seconds."
+"  The readdir cache [actually, there are several semi-independent caches] is"
+" populated after a readdir(2) call with the stat and extended attributes of "
+"the files in the directory, in anticipation that they will be requested soon"
+" after."
 msgstr ""
 
 #. type: textblock
@@ -29999,14 +30952,14 @@ msgstr ""
 msgid ""
 "If you have untrusted raw-format guest disk images, you should use this "
 "option to specify the disk format.  This avoids a possible security problem "
-"with malicious guests (CVE-2010-3851).  See also L<guestfs(3)/"
-"guestfs_add_drive_opts>."
+"with malicious guests (CVE-2010-3851).  See also "
+"L<guestfs(3)/guestfs_add_drive_opts>."
 msgstr ""
 
 #. type: =item
 #: ../fuse/guestmount.pod:139
 msgid "B<--fuse-help>"
-msgstr ""
+msgstr "B<--fuse-help>"
 
 #. type: textblock
 #: ../fuse/guestmount.pod:141
@@ -30026,8 +30979,8 @@ msgstr ""
 #. type: textblock
 #: ../fuse/guestmount.pod:167
 msgid ""
-"Mount the named partition or logical volume on the given mountpoint B<in the "
-"guest> (this has nothing to do with mountpoints in the host)."
+"Mount the named partition or logical volume on the given mountpoint B<in the"
+" guest> (this has nothing to do with mountpoints in the host)."
 msgstr ""
 
 #. type: textblock
@@ -30094,7 +31047,7 @@ msgstr ""
 #. type: =item
 #: ../fuse/guestmount.pod:208
 msgid "B<-o attr_timeout=N>"
-msgstr ""
+msgstr "B<-o attr_timeout=N>"
 
 #. type: textblock
 #: ../fuse/guestmount.pod:210
@@ -30109,8 +31062,8 @@ msgstr ""
 #. type: textblock
 #: ../fuse/guestmount.pod:214
 msgid ""
-"Allow the kernel to cache files (reduces the number of reads that have to go "
-"through the L<guestfs(3)> API).  This is generally a good idea if you can "
+"Allow the kernel to cache files (reduces the number of reads that have to go"
+" through the L<guestfs(3)> API).  This is generally a good idea if you can "
 "afford the extra memory usage."
 msgstr ""
 
@@ -30205,9 +31158,9 @@ msgstr ""
 #. type: textblock
 #: ../fuse/guestmount.pod:281
 msgid ""
-"L<guestfish(1)>, L<virt-inspector(1)>, L<virt-cat(1)>, L<virt-edit(1)>, "
-"L<virt-tar(1)>, L<guestfs(3)>, L<http://libguestfs.org/>, L<http://fuse.sf."
-"net/>."
+"L<guestfish(1)>, L<virt-inspector(1)>, L<virt-cat(1)>, L<virt-edit(1)>, L"
+"<virt-tar(1)>, L<guestfs(3)>, L<http://libguestfs.org/>, "
+"L<http://fuse.sf.net/>."
 msgstr ""
 
 #. type: textblock
@@ -30218,7 +31171,8 @@ msgstr ""
 #. type: textblock
 #: ../tools/virt-win-reg.pl:37
 msgid ""
-"virt-win-reg - Export and merge Windows Registry entries from a Windows guest"
+"virt-win-reg - Export and merge Windows Registry entries from a Windows "
+"guest"
 msgstr ""
 
 #. type: verbatim
@@ -30273,10 +31227,10 @@ msgstr ""
 #. type: textblock
 #: ../tools/virt-win-reg.pl:58
 msgid ""
-"Modifying the Windows Registry is an inherently risky operation.  The format "
-"is deliberately obscure and undocumented, and Registry changes can leave the "
-"system unbootable.  Therefore when using the I<--merge> option, make sure "
-"you have a reliable backup first."
+"Modifying the Windows Registry is an inherently risky operation.  The format"
+" is deliberately obscure and undocumented, and Registry changes can leave "
+"the system unbootable.  Therefore when using the I<--merge> option, make "
+"sure you have a reliable backup first."
 msgstr ""
 
 #. type: textblock
@@ -30296,8 +31250,8 @@ msgstr ""
 #. type: textblock
 #: ../tools/virt-win-reg.pl:71
 msgid ""
-"If I<--merge> is I<not> specified, then the chosen registry key is displayed/"
-"exported (recursively).  For example:"
+"If I<--merge> is I<not> specified, then the chosen registry key is "
+"displayed/exported (recursively).  For example:"
 msgstr ""
 
 #. type: verbatim
@@ -30342,15 +31296,15 @@ msgstr ""
 #. type: =head1
 #: ../tools/virt-win-reg.pl:88 ../tools/virt-tar.pl:45
 msgid "NOTE"
-msgstr ""
+msgstr "ПРИМІТКА"
 
 #. type: textblock
 #: ../tools/virt-win-reg.pl:90
 msgid ""
 "This program is only meant for simple access to the registry.  If you want "
 "to do complicated things with the registry, we suggest you download the "
-"Registry hive files from the guest using L<libguestfs(3)> or L<guestfish(1)> "
-"and access them locally, eg. using L<hivex(3)>, L<hivexsh(1)> or "
+"Registry hive files from the guest using L<libguestfs(3)> or L<guestfish(1)>"
+" and access them locally, eg. using L<hivex(3)>, L<hivexsh(1)> or "
 "L<hivexregedit(1)>."
 msgstr ""
 
@@ -30366,12 +31320,12 @@ msgstr ""
 #: ../tools/virt-tar.pl:121 ../tools/virt-make-fs.pl:171
 #: ../tools/virt-list-partitions.pl:72
 msgid "Display version number and exit."
-msgstr ""
+msgstr "Показати дані щодо версії і завершити роботу."
 
 #. type: =item
 #: ../tools/virt-win-reg.pl:120 ../tools/virt-make-fs.pl:177
 msgid "B<--debug>"
-msgstr ""
+msgstr "B<--debug>"
 
 #. type: textblock
 #: ../tools/virt-win-reg.pl:122
@@ -30396,7 +31350,8 @@ msgstr ""
 #: ../tools/virt-win-reg.pl:133 ../tools/virt-list-filesystems.pl:82
 #: ../tools/virt-tar.pl:132 ../tools/virt-list-partitions.pl:83
 msgid ""
-"If you specify guest block devices directly, then libvirt is not used at all."
+"If you specify guest block devices directly, then libvirt is not used at "
+"all."
 msgstr ""
 
 #. type: =item
@@ -30433,7 +31388,7 @@ msgstr ""
 #. type: =item
 #: ../tools/virt-win-reg.pl:157
 msgid "B<--merge>"
-msgstr ""
+msgstr "B<--merge>"
 
 #. type: textblock
 #: ../tools/virt-win-reg.pl:159
@@ -30447,8 +31402,8 @@ msgstr ""
 #: ../tools/virt-win-reg.pl:163
 msgid ""
 "Note that I<--merge> is I<unsafe> to use on live virtual machines, and will "
-"result in disk corruption.  However exporting (without this flag)  is always "
-"safe."
+"result in disk corruption.  However exporting (without this flag)  is always"
+" safe."
 msgstr ""
 
 #. type: =item
@@ -30460,8 +31415,8 @@ msgstr ""
 #: ../tools/virt-win-reg.pl:173
 msgid ""
 "When merging (only), you may need to specify the encoding for strings to be "
-"used in the hive file.  This is explained in detail in L<Win::Hivex::Regedit"
-"(3)/ENCODING STRINGS>."
+"used in the hive file.  This is explained in detail in "
+"L<Win::Hivex::Regedit(3)/ENCODING STRINGS>."
 msgstr ""
 
 #. type: textblock
@@ -30479,16 +31434,16 @@ msgstr ""
 #. type: textblock
 #: ../tools/virt-win-reg.pl:186
 msgid ""
-"When exporting (only), assume strings are UTF-16LE and print them as strings "
-"instead of hex sequences.  Remove the final zero codepoint from strings if "
+"When exporting (only), assume strings are UTF-16LE and print them as strings"
+" instead of hex sequences.  Remove the final zero codepoint from strings if "
 "present."
 msgstr ""
 
 #. type: textblock
 #: ../tools/virt-win-reg.pl:190
 msgid ""
-"This is unsafe and does not preserve the fidelity of strings in the original "
-"Registry for various reasons:"
+"This is unsafe and does not preserve the fidelity of strings in the original"
+" Registry for various reasons:"
 msgstr ""
 
 #. type: textblock
@@ -30594,8 +31549,8 @@ msgstr ""
 #. type: textblock
 #: ../tools/virt-win-reg.pl:583
 msgid ""
-"You can use C<HKLM> as a shorthand for C<HKEY_LOCAL_MACHINE>, and C<HKU> for "
-"C<HKEY_USERS>."
+"You can use C<HKLM> as a shorthand for C<HKEY_LOCAL_MACHINE>, and C<HKU> for"
+" C<HKEY_USERS>."
 msgstr ""
 
 #. type: textblock
@@ -30608,7 +31563,7 @@ msgstr ""
 #. type: =head1
 #: ../tools/virt-win-reg.pl:589
 msgid "ENCODING"
-msgstr ""
+msgstr "КОДУВАННЯ"
 
 #. type: textblock
 #: ../tools/virt-win-reg.pl:591
@@ -30638,8 +31593,8 @@ msgstr ""
 #. type: textblock
 #: ../tools/virt-win-reg.pl:602
 msgid ""
-"To go in the opposite direction, after exporting and before sending the file "
-"to a Windows user, do something like this:"
+"To go in the opposite direction, after exporting and before sending the file"
+" to a Windows user, do something like this:"
 msgstr ""
 
 #. type: verbatim
@@ -30695,8 +31650,8 @@ msgstr ""
 #: ../tools/virt-win-reg.pl:625
 msgid ""
 "C<CurrentControlSet> is usually an alias for C<ControlSet001>.  In some "
-"circumstances it might refer to another control set.  The way to find out is "
-"to look at the C<HKLM\\SYSTEM\\Select> key:"
+"circumstances it might refer to another control set.  The way to find out is"
+" to look at the C<HKLM\\SYSTEM\\Select> key:"
 msgstr ""
 
 #. type: verbatim
@@ -30731,8 +31686,8 @@ msgstr ""
 #. type: textblock
 #: ../tools/virt-win-reg.pl:643
 msgid ""
-"Note that some of these tips modify the guest disk image.  The guest I<must> "
-"be shut off, else you will get disk corruption."
+"Note that some of these tips modify the guest disk image.  The guest I<must>"
+" be shut off, else you will get disk corruption."
 msgstr ""
 
 #. type: =head2
@@ -30776,8 +31731,8 @@ msgstr ""
 #: ../tools/virt-win-reg.pl:661
 msgid ""
 "In this example we use the key C<RunOnce> which means that the script will "
-"run precisely once when the first user logs in.  If you want it to run every "
-"time a user logs in, replace C<RunOnce> with C<Run>."
+"run precisely once when the first user logs in.  If you want it to run every"
+" time a user logs in, replace C<RunOnce> with C<Run>."
 msgstr ""
 
 #. type: textblock
@@ -30811,7 +31766,8 @@ msgstr ""
 #: ../tools/virt-win-reg.pl:676
 msgid ""
 "First upload the program and optionally the service wrapper.  In this case "
-"the test program is called C<test.exe> and we are using the RHSrvAny wrapper:"
+"the test program is called C<test.exe> and we are using the RHSrvAny "
+"wrapper:"
 msgstr ""
 
 #. type: verbatim
@@ -30923,16 +31879,17 @@ msgstr ""
 msgid ""
 "Libvirt guest names can contain arbitrary characters, some of which have "
 "meaning to the shell such as C<#> and space.  You may need to quote or "
-"escape these characters on the command line.  See the shell manual page L<sh"
-"(1)> for details."
+"escape these characters on the command line.  See the shell manual page "
+"L<sh(1)> for details."
 msgstr ""
 
 #. type: textblock
 #: ../tools/virt-win-reg.pl:746
 msgid ""
-"L<hivex(3)>, L<hivexsh(1)>, L<hivexregedit(1)>, L<guestfs(3)>, L<guestfish(1)"
-">, L<virt-cat(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Win::Hivex"
-"(3)>, L<Win::Hivex::Regedit(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
+"L<hivex(3)>, L<hivexsh(1)>, L<hivexregedit(1)>, L<guestfs(3)>, "
+"L<guestfish(1)>, L<virt-cat(1)>, L<Sys::Guestfs(3)>, "
+"L<Sys::Guestfs::Lib(3)>, L<Win::Hivex(3)>, L<Win::Hivex::Regedit(3)>, "
+"L<Sys::Virt(3)>, L<http://libguestfs.org/>."
 msgstr ""
 
 #. type: textblock
@@ -30954,8 +31911,8 @@ msgstr ""
 #. type: textblock
 #: ../tools/virt-win-reg.pl:767
 msgid ""
-"Attach /tmp/virt-win-reg.log to a new bug report at L<https://bugzilla."
-"redhat.com/>"
+"Attach /tmp/virt-win-reg.log to a new bug report at "
+"L<https://bugzilla.redhat.com/>"
 msgstr ""
 
 #. type: =head1
@@ -30963,14 +31920,14 @@ msgstr ""
 #: ../tools/virt-tar.pl:301 ../tools/virt-make-fs.pl:564
 #: ../tools/virt-list-partitions.pl:269
 msgid "AUTHOR"
-msgstr ""
+msgstr "АВТОР"
 
 #. type: textblock
 #: ../tools/virt-win-reg.pl:772 ../tools/virt-list-filesystems.pl:204
 #: ../tools/virt-tar.pl:303 ../tools/virt-make-fs.pl:566
 #: ../tools/virt-list-partitions.pl:271
 msgid "Richard W.M. Jones L<http://people.redhat.com/~rjones/>"
-msgstr ""
+msgstr "Richard W.M. Jones L<http://people.redhat.com/~rjones/>"
 
 #. type: textblock
 #: ../tools/virt-win-reg.pl:776 ../tools/virt-make-fs.pl:570
@@ -31009,16 +31966,16 @@ msgstr ""
 #. type: textblock
 #: ../tools/virt-list-filesystems.pl:45
 msgid ""
-"C<virt-list-filesystems> is a command line tool to list the filesystems that "
-"are contained in a virtual machine or disk image."
+"C<virt-list-filesystems> is a command line tool to list the filesystems that"
+" are contained in a virtual machine or disk image."
 msgstr ""
 
 #. type: textblock
 #: ../tools/virt-list-filesystems.pl:49
 msgid ""
 "C<virt-list-filesystems> is just a simple wrapper around L<libguestfs(3)> "
-"functionality.  For more complex cases you should look at the L<guestfish(1)"
-"> tool."
+"functionality.  For more complex cases you should look at the "
+"L<guestfish(1)> tool."
 msgstr ""
 
 #. type: =item
@@ -31036,7 +31993,7 @@ msgstr ""
 #. type: =item
 #: ../tools/virt-list-filesystems.pl:115
 msgid "B<-a> | B<--all>"
-msgstr ""
+msgstr "B<-a> | B<--all>"
 
 #. type: textblock
 #: ../tools/virt-list-filesystems.pl:117
@@ -31049,14 +32006,17 @@ msgstr ""
 #: ../tools/virt-list-filesystems.pl:191
 msgid ""
 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-tar(1)>, L<virt-"
-"filesystems(1)>, L<virt-list-partitions(1)>, L<Sys::Guestfs(3)>, L<Sys::"
-"Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
+"filesystems(1)>, L<virt-list-partitions(1)>, L<Sys::Guestfs(3)>, "
+"L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
 msgstr ""
+"L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-tar(1)>, L<virt-"
+"filesystems(1)>, L<virt-list-partitions(1)>, L<Sys::Guestfs(3)>, "
+"L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
 
 #. type: textblock
 #: ../tools/virt-list-filesystems.pl:208 ../tools/virt-tar.pl:307
 msgid "Copyright (C) 2009 Red Hat Inc."
-msgstr ""
+msgstr "© Red Hat Inc., 2009"
 
 #. type: textblock
 #: ../tools/virt-tar.pl:33
@@ -31148,8 +32108,8 @@ msgstr ""
 #: ../tools/virt-tar.pl:66
 msgid ""
 "You must I<not> use C<virt-tar> with the I<-u> option (upload) on live "
-"virtual machines.  If you do this, you risk disk corruption in the VM.  "
-"C<virt-tar> tries to stop you from doing this, but doesn't catch all cases."
+"virtual machines.  If you do this, you risk disk corruption in the VM.  C"
+"<virt-tar> tries to stop you from doing this, but doesn't catch all cases."
 msgstr ""
 
 #. type: textblock
@@ -31175,8 +32135,8 @@ msgstr ""
 #: ../tools/virt-tar.pl:84
 msgid ""
 "If you want to just view a single file, use L<virt-cat(1)>.  If you just "
-"want to edit a single file, use L<virt-edit(1)>.  For more complex cases you "
-"should look at the L<guestfish(1)> tool."
+"want to edit a single file, use L<virt-edit(1)>.  For more complex cases you"
+" should look at the L<guestfish(1)> tool."
 msgstr ""
 
 #. type: textblock
@@ -31184,8 +32144,8 @@ msgstr ""
 msgid ""
 "There are two modes of operation: I<-x> (eXtract) downloads a directory and "
 "its contents (recursively) from the virtual machine into a local tarball.  "
-"I<-u> uploads from a local tarball, unpacking it into a directory inside the "
-"virtual machine.  You cannot use these two options together."
+"I<-u> uploads from a local tarball, unpacking it into a directory inside the"
+" virtual machine.  You cannot use these two options together."
 msgstr ""
 
 #. type: textblock
@@ -31201,19 +32161,19 @@ msgstr ""
 msgid ""
 "C<virt-tar> can only handle tar (optionally gzipped) format tarballs.  For "
 "example it cannot do PKZip files or bzip2 compression.  If you want that "
-"then you'll have to rebuild the tarballs yourself.  (This is a limitation of "
-"the L<libguestfs(3)> API)."
+"then you'll have to rebuild the tarballs yourself.  (This is a limitation of"
+" the L<libguestfs(3)> API)."
 msgstr ""
 
 #. type: =item
 #: ../tools/virt-tar.pl:156
 msgid "B<-x> | B<--extract> | B<--download>"
-msgstr ""
+msgstr "B<-x> | B<--extract> | B<--download>"
 
 #. type: =item
 #: ../tools/virt-tar.pl:158
 msgid "B<-u> | B<--upload>"
-msgstr ""
+msgstr "B<-u> | B<--upload>"
 
 #. type: textblock
 #: ../tools/virt-tar.pl:160
@@ -31225,8 +32185,8 @@ msgstr ""
 #. type: textblock
 #: ../tools/virt-tar.pl:163
 msgid ""
-"Use I<-u> to upload and unpack from a local tarball into a virtual machine.  "
-"Please read the L</WARNING> section above before using this option."
+"Use I<-u> to upload and unpack from a local tarball into a virtual machine."
+"  Please read the L</WARNING> section above before using this option."
 msgstr ""
 
 #. type: textblock
@@ -31237,7 +32197,7 @@ msgstr ""
 #. type: =item
 #: ../tools/virt-tar.pl:173
 msgid "B<-z> | B<--gzip>"
-msgstr ""
+msgstr "B<-z> | B<--gzip>"
 
 #. type: textblock
 #: ../tools/virt-tar.pl:175
@@ -31247,11 +32207,15 @@ msgstr ""
 #. type: textblock
 #: ../tools/virt-tar.pl:288
 msgid ""
-"L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-edit(1)>, L<virt-copy-"
-"in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<Sys::"
-"Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs."
-"org/>."
+"L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-edit(1)>, L<virt-"
+"copy-in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, "
+"L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, "
+"L<http://libguestfs.org/>."
 msgstr ""
+"L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-edit(1)>, L<virt-"
+"copy-in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, "
+"L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, "
+"L<http://libguestfs.org/>."
 
 #. type: textblock
 #: ../tools/virt-make-fs.pl:37
@@ -31286,11 +32250,11 @@ msgstr ""
 #: ../tools/virt-make-fs.pl:49
 msgid ""
 "Virt-make-fs is a command line tool for creating a filesystem from a tar "
-"archive or some files in a directory.  It is similar to tools like L<mkisofs"
-"(1)>, L<genisoimage(1)> and L<mksquashfs(1)>.  Unlike those tools, it can "
-"create common filesystem types like ext2/3 or NTFS, which can be useful if "
-"you want to attach these filesystems to existing virtual machines (eg. to "
-"import large amounts of read-only data to a VM)."
+"archive or some files in a directory.  It is similar to tools like "
+"L<mkisofs(1)>, L<genisoimage(1)> and L<mksquashfs(1)>.  Unlike those tools, "
+"it can create common filesystem types like ext2/3 or NTFS, which can be "
+"useful if you want to attach these filesystems to existing virtual machines "
+"(eg. to import large amounts of read-only data to a VM)."
 msgstr ""
 
 #. type: textblock
@@ -31327,8 +32291,8 @@ msgid ""
 "Unlike formats such as tar and squashfs, a filesystem does not \"just fit\" "
 "the files that it contains, but might have extra space.  Depending on how "
 "you are going to use the output, you might think this extra space is wasted "
-"and want to minimize it, or you might want to leave space so that more files "
-"can be added later.  Virt-make-fs defaults to minimizing the extra space, "
+"and want to minimize it, or you might want to leave space so that more files"
+" can be added later.  Virt-make-fs defaults to minimizing the extra space, "
 "but you can use the I<--size> flag to leave space in the filesystem if you "
 "want it."
 msgstr ""
@@ -31338,10 +32302,10 @@ msgstr ""
 msgid ""
 "An alternative way to leave extra space but not make the output image any "
 "bigger is to use an alternative disk image format (instead of the default "
-"\"raw\" format).  Using I<--format=qcow2> will use the native QEmu/KVM qcow2 "
-"image format (check your hypervisor supports this before using it).  This "
-"allows you to choose a large I<--size> but the extra space won't actually be "
-"allocated in the image until you try to store something in it."
+"\"raw\" format).  Using I<--format=qcow2> will use the native QEmu/KVM qcow2"
+" image format (check your hypervisor supports this before using it).  This "
+"allows you to choose a large I<--size> but the extra space won't actually be"
+" allocated in the image until you try to store something in it."
 msgstr ""
 
 #. type: textblock
@@ -31356,7 +32320,7 @@ msgstr ""
 #: ../tools/virt-make-fs.pl:89 ../tools/virt-make-fs.pl:123
 #: ../tools/virt-make-fs.pl:142
 msgid "EXAMPLE"
-msgstr ""
+msgstr "ПРИКЛАД"
 
 #. type: verbatim
 #: ../tools/virt-make-fs.pl:91
@@ -31365,37 +32329,39 @@ msgid ""
 " virt-make-fs --format=qcow2 --size=+200M input output.img\n"
 "\n"
 msgstr ""
+" virt-make-fs --format=qcow2 --size=+200M input output.img\n"
+"\n"
 
 #. type: =head2
 #: ../tools/virt-make-fs.pl:93
 msgid "FILESYSTEM TYPE"
-msgstr ""
+msgstr "ТИП ФАЙЛОВОЇ СИСТЕМИ"
 
 #. type: textblock
 #: ../tools/virt-make-fs.pl:95
 msgid ""
-"The default filesystem type is C<ext2>.  Just about any filesystem type that "
-"libguestfs supports can be used (but I<not> read-only formats like "
+"The default filesystem type is C<ext2>.  Just about any filesystem type that"
+" libguestfs supports can be used (but I<not> read-only formats like "
 "ISO9660).  Here are some of the more common choices:"
 msgstr ""
 
 #. type: =item
 #: ../tools/virt-make-fs.pl:101
 msgid "I<ext3>"
-msgstr ""
+msgstr "I<ext3>"
 
 #. type: textblock
 #: ../tools/virt-make-fs.pl:103
 msgid ""
-"Note that ext3 filesystems contain a journal, typically 1-32 MB in size.  If "
-"you are not going to use the filesystem in a way that requires the journal, "
-"then this is just wasted overhead."
+"Note that ext3 filesystems contain a journal, typically 1-32 MB in size.  If"
+" you are not going to use the filesystem in a way that requires the journal,"
+" then this is just wasted overhead."
 msgstr ""
 
 #. type: =item
 #: ../tools/virt-make-fs.pl:107
 msgid "I<ntfs> or I<vfat>"
-msgstr ""
+msgstr "I<ntfs> або I<vfat>"
 
 #. type: textblock
 #: ../tools/virt-make-fs.pl:109
@@ -31405,8 +32371,8 @@ msgstr ""
 #. type: textblock
 #: ../tools/virt-make-fs.pl:111
 msgid ""
-"I<Note for vfat>: The tar archive or local directory must only contain files "
-"which are owned by root (ie. UID:GID = 0:0).  The reason is that the tar "
+"I<Note for vfat>: The tar archive or local directory must only contain files"
+" which are owned by root (ie. UID:GID = 0:0).  The reason is that the tar "
 "program running within libguestfs is unable to change the ownership of non-"
 "root files, since vfat itself does not support this."
 msgstr ""
@@ -31414,7 +32380,7 @@ msgstr ""
 #. type: =item
 #: ../tools/virt-make-fs.pl:116
 msgid "I<minix>"
-msgstr ""
+msgstr "I<minix>"
 
 #. type: textblock
 #: ../tools/virt-make-fs.pl:118
@@ -31453,8 +32419,8 @@ msgstr ""
 #. type: textblock
 #: ../tools/virt-make-fs.pl:136
 msgid ""
-"On the other hand, if you have a partition table then the output image is no "
-"longer a straight filesystem.  For example you cannot run L<fsck(8)> "
+"On the other hand, if you have a partition table then the output image is no"
+" longer a straight filesystem.  For example you cannot run L<fsck(8)> "
 "directly on a partitioned disk image.  (However libguestfs tools such as "
 "L<guestfish(1)> and L<virt-resize(1)> can still be used)."
 msgstr ""
@@ -31490,27 +32456,27 @@ msgstr ""
 #. type: textblock
 #: ../tools/virt-make-fs.pl:179
 msgid "Enable debugging information."
-msgstr ""
+msgstr "Увімкнути виведення діагностичних даних."
 
 #. type: =item
 #: ../tools/virt-make-fs.pl:185
 msgid "B<--size=E<lt>NE<gt>>"
-msgstr ""
+msgstr "B<--size=E<lt>NE<gt>>"
 
 #. type: =item
 #: ../tools/virt-make-fs.pl:187
 msgid "B<--size=+E<lt>NE<gt>>"
-msgstr ""
+msgstr "B<--size=+E<lt>NE<gt>>"
 
 #. type: =item
 #: ../tools/virt-make-fs.pl:189
 msgid "B<-s E<lt>NE<gt>>"
-msgstr ""
+msgstr "B<-s E<lt>NE<gt>>"
 
 #. type: =item
 #: ../tools/virt-make-fs.pl:191
 msgid "B<-s +E<lt>NE<gt>>"
-msgstr ""
+msgstr "B<-s +E<lt>NE<gt>>"
 
 #. type: textblock
 #: ../tools/virt-make-fs.pl:193
@@ -31528,8 +32494,8 @@ msgstr ""
 #. type: textblock
 #: ../tools/virt-make-fs.pl:199
 msgid ""
-"To choose a fixed size output disk, specify an absolute number followed by b/"
-"K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
+"To choose a fixed size output disk, specify an absolute number followed by "
+"b/K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
 "Petabytes or Exabytes.  This must be large enough to contain all the input "
 "files, else you will get an error."
 msgstr ""
@@ -31537,8 +32503,8 @@ msgstr ""
 #. type: textblock
 #: ../tools/virt-make-fs.pl:204
 msgid ""
-"To leave extra space, specify C<+> (plus sign) and a number followed by b/K/"
-"M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
+"To leave extra space, specify C<+> (plus sign) and a number followed by "
+"b/K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
 "Petabytes or Exabytes.  For example: I<--size=+200M> means enough space for "
 "the input files, and (approximately) an extra 200 MB free space."
 msgstr ""
@@ -31547,9 +32513,9 @@ msgstr ""
 #: ../tools/virt-make-fs.pl:210
 msgid ""
 "Note that virt-make-fs estimates free space, and therefore will not produce "
-"filesystems containing precisely the free space requested.  (It is much more "
-"expensive and time-consuming to produce a filesystem which has precisely the "
-"desired free space)."
+"filesystems containing precisely the free space requested.  (It is much more"
+" expensive and time-consuming to produce a filesystem which has precisely "
+"the desired free space)."
 msgstr ""
 
 #. type: =item
@@ -31597,7 +32563,7 @@ msgstr ""
 #. type: textblock
 #: ../tools/virt-make-fs.pl:240
 msgid "The default is C<ext2>."
-msgstr ""
+msgstr "Типовим значенням є C<ext2>."
 
 #. type: textblock
 #: ../tools/virt-make-fs.pl:242
@@ -31608,7 +32574,7 @@ msgstr ""
 #. type: =item
 #: ../tools/virt-make-fs.pl:249
 msgid "B<--partition>"
-msgstr ""
+msgstr "B<--partition>"
 
 #. type: =item
 #: ../tools/virt-make-fs.pl:251
@@ -31618,7 +32584,8 @@ msgstr ""
 #. type: textblock
 #: ../tools/virt-make-fs.pl:253
 msgid ""
-"If specified, this flag adds an MBR partition table to the output disk image."
+"If specified, this flag adds an MBR partition table to the output disk "
+"image."
 msgstr ""
 
 #. type: textblock
@@ -31658,14 +32625,19 @@ msgid ""
 " virt-make-fs --partition -- input.tar ...\n"
 "\n"
 msgstr ""
+" virt-make-fs --partition -- input.tar ...\n"
+"\n"
 
 #. type: textblock
 #: ../tools/virt-make-fs.pl:541
 msgid ""
 "L<guestfish(1)>, L<virt-resize(1)>, L<virt-tar-in(1)>, L<mkisofs(1)>, "
-"L<genisoimage(1)>, L<mksquashfs(1)>, L<mke2fs(8)>, L<resize2fs(8)>, L<guestfs"
-"(3)>, L<Sys::Guestfs(3)>, L<http://libguestfs.org/>."
+"L<genisoimage(1)>, L<mksquashfs(1)>, L<mke2fs(8)>, L<resize2fs(8)>, "
+"L<guestfs(3)>, L<Sys::Guestfs(3)>, L<http://libguestfs.org/>."
 msgstr ""
+"L<guestfish(1)>, L<virt-resize(1)>, L<virt-tar-in(1)>, L<mkisofs(1)>, "
+"L<genisoimage(1)>, L<mksquashfs(1)>, L<mke2fs(8)>, L<resize2fs(8)>, "
+"L<guestfs(3)>, L<Sys::Guestfs(3)>, L<http://libguestfs.org/>."
 
 #. type: verbatim
 #: ../tools/virt-make-fs.pl:558
@@ -31675,12 +32647,15 @@ msgid ""
 " virt-make-fs --debug [...] > /tmp/virt-make-fs.log 2>&1\n"
 "\n"
 msgstr ""
+" export LIBGUESTFS_DEBUG=1\n"
+" virt-make-fs --debug [...] > /tmp/virt-make-fs.log 2>&1\n"
+"\n"
 
 #. type: textblock
 #: ../tools/virt-make-fs.pl:561
 msgid ""
-"Attach /tmp/virt-make-fs.log to a new bug report at L<https://bugzilla."
-"redhat.com/>"
+"Attach /tmp/virt-make-fs.log to a new bug report at "
+"L<https://bugzilla.redhat.com/>"
 msgstr ""
 
 #. type: textblock
@@ -31696,6 +32671,8 @@ msgid ""
 " virt-list-partitions [--options] domname\n"
 "\n"
 msgstr ""
+" virt-list-partitions [--параметри] назва_домену\n"
+"\n"
 
 #. type: verbatim
 #: ../tools/virt-list-partitions.pl:38
@@ -31704,6 +32681,8 @@ msgid ""
 " virt-list-partitions [--options] disk.img [disk.img ...]\n"
 "\n"
 msgstr ""
+" virt-list-partitions [--параметри] диск.img [диск.img ...]\n"
+"\n"
 
 #. type: textblock
 #: ../tools/virt-list-partitions.pl:45
@@ -31717,14 +32696,14 @@ msgstr ""
 #: ../tools/virt-list-partitions.pl:50
 msgid ""
 "C<virt-list-partitions> is just a simple wrapper around L<libguestfs(3)> "
-"functionality.  For more complex cases you should look at the L<guestfish(1)"
-"> tool."
+"functionality.  For more complex cases you should look at the "
+"L<guestfish(1)> tool."
 msgstr ""
 
 #. type: =item
 #: ../tools/virt-list-partitions.pl:107
 msgid "B<-h> | B<--human-readable>"
-msgstr ""
+msgstr "B<-h> | B<--human-readable>"
 
 #. type: textblock
 #: ../tools/virt-list-partitions.pl:109
@@ -31734,14 +32713,14 @@ msgstr ""
 #. type: textblock
 #: ../tools/virt-list-partitions.pl:117
 msgid ""
-"With this option, C<virt-list-partitions> displays the type and size of each "
-"partition too (where \"type\" means C<ext3>, C<pv> etc.)"
+"With this option, C<virt-list-partitions> displays the type and size of each"
+" partition too (where \"type\" means C<ext3>, C<pv> etc.)"
 msgstr ""
 
 #. type: =item
 #: ../tools/virt-list-partitions.pl:124
 msgid "B<-t> | B<--total>"
-msgstr ""
+msgstr "B<-t> | B<--total>"
 
 #. type: textblock
 #: ../tools/virt-list-partitions.pl:126
@@ -31753,11 +32732,16 @@ msgstr ""
 #: ../tools/virt-list-partitions.pl:259
 msgid ""
 "L<guestfs(3)>, L<guestfish(1)>, L<virt-filesystems(1)>, L<virt-list-"
-"filesystems(1)>, L<virt-resize(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib"
-"(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
+"filesystems(1)>, L<virt-resize(1)>, L<Sys::Guestfs(3)>, "
+"L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
 msgstr ""
+"L<guestfs(3)>, L<guestfish(1)>, L<virt-filesystems(1)>, L<virt-list-"
+"filesystems(1)>, L<virt-resize(1)>, L<Sys::Guestfs(3)>, "
+"L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
 
 #. type: textblock
 #: ../tools/virt-list-partitions.pl:275
 msgid "Copyright (C) 2009-2010 Red Hat Inc."
-msgstr ""
+msgstr "© Red Hat Inc., 2009–2010"
+
+